/* ================================================
   AUTO SPOTEECH - FEUILLE DE STYLES PRINCIPALE
   Styles responsives et séparés du HTML
   ================================================ */

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    background-color: #f5f5f5;
}

/* ================================================
   CONTENEUR ET LAYOUT DE BASE
   ================================================ */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================================================
   HEADER - EN-TÊTE
   ================================================ */
#header {
    background-color: #1a3a8f;
    color: #ffffff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background-color: #c62828;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
}

.logo-text p {
    font-size: 12px;
    color: #cccccc;
    line-height: 1.2;
    max-width: 200px;
}

/* Navigation */
#main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

#main-nav li {
    margin: 0;
}

#main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#main-nav a:hover {
    background-color: #c62828;
    color: #1a3a8f;
}

#main-nav a.active {
    background-color: #c62828;
    color: #1a3a8f;
}

/* Menu hamburger - caché par défaut */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================================
   HERO SECTION
   ================================================ */
#hero {
    background: linear-gradient(rgba(26, 58, 143, 0.8), rgba(26, 58, 143, 0.9)), 
                url('../assets/images/banner001.JPG');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 150px 0 80px 0;
    margin-top: 70px;
    text-align: center;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background-color: #c62828;
    color: #FFFFFF ;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid #c62828;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border-color: #ffffff;
}

/* ================================================
   SECTIONS ET TITRES
   ================================================ */
#permis {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #1a3a8f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #c62828;
    bottom: -10px;
    left: 25%;
}

.section-title p {
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 100px 0 50px;
    min-height: 500px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 36px;
    color: #1a3a8f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-title p {
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

/* ================================================
   GRILLE PERMIS
   ================================================ */
.permis-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.permis-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.permis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.permis-image {
    height: 200px;
    overflow: hidden;
}

.permis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.permis-card:hover .permis-image img {
    transform: scale(1.1);
}

.permis-content {
    padding: 20px;
}

.permis-content h3 {
    font-size: 20px;
    color: #FFFFFF z;
    margin-bottom: 10px;
}

.permis-content p {
    color: #666666;
    margin-bottom: 15px;
    font-size: 14px;
}

.permis-price {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-top: 15px;
}

.permis-price .price {
    font-size: 24px;
    font-weight: bold;
    color: #1a3a8f;
}

.permis-price .note {
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}

/* ================================================
   FORMULAIRES
   ================================================ */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333333;
}

.form-group label.required:after {
    content: ' *';
    color: #ff0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a3a8f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.form-section h3 {
    font-size: 20px;
    color: #1a3a8f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c62828;
}


.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item input {
    width: auto;
    margin: 0;
}

.submit-button {
    background-color: #1a3a8f;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
    min-width: 200px;
}

.submit-button:hover {
    background-color: #c62828;
    color: #1a3a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 12px;
    color: #666666;
    border-left: 4px solid #1a3a8f;
}

.form-info i {
    color: #1a3a8f;
    margin-right: 5px;
}

.required-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #666666;
}

.required-note span {
    color: #ff0000;
}

/* Alertes */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin: 15px auto;
    max-width: 800px;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-success {
    background: #e6f4ea;
    color: #1e7e34;
    border-color: #cde9d6;
    border-left-color: #34a853;
}

.alert-danger {
    background: #fbe9e9;
    color: #842029;
    border-color: #f5c2c7;
    border-left-color: #d32f2f;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 280px;
}

.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    color: #1a3a8f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c62828;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #1a3a8f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-details h4 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666666;
    font-size: 14px;
}

.contact-details a {
    color: #1a3a8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    text-decoration: underline;
    color: #c62828;
}

/* Map container */
.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* Social links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #1a3a8f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background-color: #c62828;
    color: #1a3a8f;
    transform: translateY(-3px);
}

/* Services */
.service-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    width: 40%;
    min-height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-details {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 22px;
    color: #1a3a8f;
    margin-bottom: 15px;
}

.service-details ul {
    list-style: none;
    margin: 15px 0;
}

.service-details ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-details ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}

/* ================================================
   À PROPOS
   ================================================ */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.about-image {
    width: 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 28px;
    color: #1a3a8f;
    margin-bottom: 20px;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.value-card {
    flex: 1;
    min-width: 180px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #1a3a8f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.value-card h3 {
    font-size: 18px;
    color: #1a3a8f;
    margin-bottom: 10px;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 50px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    padding: 20px;
    flex: 1;
    min-width: 150px;
}

.stat-item h3 {
    font-size: 36px;
    color: #1a3a8f;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666666;
    font-size: 14px;
}

.team {
    margin-top: 60px;
}

.team h2 {
    text-align: center;
    font-size: 28px;
    color: #1a3a8f;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #c62828;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 18px;
    color: #1a3a8f;
    margin-bottom: 5px;
}

.team-member p {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

/* ================================================
   FOOTER
   ================================================ */
#footer {
    background-color: #1a3a8f;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-column {
    width: 23%;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #c62828;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: #cccccc;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ================================================
   MEDIA QUERIES - TABLETTES
   ================================================ */
@media (max-width: 1024px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .permis-card {
        max-width: 280px;
    }
    
    .footer-column {
        width: 48%;
    }
    
    .service-image {
        width: 45%;
    }
    
    .service-details {
        width: 55%;
    }
}

/* ================================================
   MEDIA QUERIES - PETITS ÉCRANS (768px)
   ================================================ */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-text {
        text-align: center;
    }
    
    .logo-text p {
        max-width: 100%;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 20px;
    }
    
    #main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1a3a8f;
        padding: 20px 0;
        z-index: 999;
    }
    
    #main-nav.active {
        display: block;
    }
    
    #main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    #main-nav li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    #main-nav a {
        display: block;
        padding: 12px 20px;
        border-radius: 0;
    }
    
    /* Hero */
    #hero {
        margin-top: 100px;
        padding: 100px 0 60px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Section */
    #permis {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title h2:after {
        width: 60%;
        left: 20%;
    }
    
    /* Grid */
    .permis-grid {
        gap: 20px;
    }
    
    .permis-card {
        max-width: 100%;
        width: 100%;
    }
    
    /* Contact */
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        flex: 1;
        width: 100%;
    }
    
    /* Formulaire */
    .form-container {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-section h3 {
        font-size: 18px;
    }
    
    /* About */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image,
    .about-text {
        width: 100%;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-item:nth-child(even) {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
        min-height: 200px;
    }
    
    .service-details {
        width: 100%;
    }
    
    /* Footer */
    .footer-column {
        width: 48%;
        margin-bottom: 20px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    /* Stats */
    .stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    /* Page title */
    .page-title h1 {
        font-size: 28px;
    }
    
    .team-grid {
        gap: 20px;
    }
}

/* ================================================
   MEDIA QUERIES - TRÈS PETITS ÉCRANS (480px)
   ================================================ */
@media (max-width: 480px) {
    /* Container */
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    /* Header */
    #header {
        padding: 10px 0;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    /* Hero */
    #hero {
        margin-top: 120px;
        padding: 80px 0 50px;
    }
    
    .hero-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Section */
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    /* Grid */
    .permis-grid {
        gap: 15px;
    }
    
    .permis-card {
        max-width: 100%;
    }
    
    .permis-image {
        height: 150px;
    }
    
    .permis-content {
        padding: 15px;
    }
    
    /* Formulaire */
    .form-container {
        padding: 20px !important;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 150px;
        margin: 30px auto 0;
    }
    
    .form-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    /* Contact */
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Footer */
    .footer-column {
        width: 100%;
        margin-bottom: 25px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    #footer {
        padding: 40px 0 15px;
    }
    
    /* Page title */
    .page-title h1 {
        font-size: 24px;
    }
    
    .page-content {
        padding: 100px 0 30px;
    }
    
    /* Values */
    .values {
        gap: 15px;
    }
    
    .value-card {
        min-width: 150px;
        padding: 18px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .value-card h3 {
        font-size: 16px;
    }
    
    .value-card p {
        font-size: 12px;
    }
    
    /* Team */
    .team-grid {
        gap: 15px;
    }
    
    .team-member {
        max-width: 160px;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .team-member h4 {
        font-size: 16px;
    }
    
    .team-member p {
        font-size: 12px;
    }
    
    /* Service */
    .service-details {
        padding: 20px;
    }
    
    .service-details h3 {
        font-size: 18px;
    }
    
    /* Contact items */
    .contact-item {
        gap: 12px;
    }
    
    .contact-details h4 {
        font-size: 14px;
    }
    
    .contact-details p {
        font-size: 12px;
    }
    
    /* Radio group */
    .radio-group {
        gap: 10px;
    }
    
    .radio-item {
        gap: 6px;
        font-size: 13px;
    }
    
    /* Alert */
    .alert {
        margin: 15px 5px;
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .stats {
        margin: 30px 0;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
}

/* ================================================
   MEDIA QUERIES - TRÈS PETITS ÉCRANS (320px)
   ================================================ */
@media (max-width: 320px) {
    .container {
        width: 100%;
        padding: 0 8px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .permis-card {
        max-width: 100%;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
    }
}
