﻿.App {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh; 
    background-color: #f9f9f9;
}

.center-container {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    
   
    border-radius: 8px;
}

.login-header {
    flex-direction: column;
    align-items: center;
}

    .login-header img {
        margin-bottom: 15px;
    }
.hindi {
    font-size: 25px;
    word-spacing: 50px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 40px;
    color: #3e98c7;
}
.english {
    font-weight: 600;
    margin-bottom: 1px;
    font-size: 25px;
    margin-top: 2px;
    color: #3e98c7;
}
.bharat {
    margin: 0 0 10px;
}
.login-header__right h1 {
    margin: 5px 0;
}
.login-header__desc {
    color: #be3017;
    font-weight: 700;
    justify-content: space-between;
    font-size: 15px
}
.login-header__desc p {
    margin: 0 10px;
    font-size: 14px;

}

.login-heading {
    font-size: 18px;
    margin: 15px 0;
    color: #154281 !important;
    font-family: Georgia, Times New Roman, Times, serif;
    text-decoration: underline; /* Adds an underline to the text */
    font-weight: bold;
}



/* Form control styling */
.form__control {
    text-align: center;
    margin-bottom: 15px;
}

/* Label styling */
.form__label {
    margin-right: 10px; /* Space between label and input */
    font-size: 1em;
    font-weight: bold;
    color: #555;
    
}

/* Input styling */
.form__input {
    border: 1px solid #029ddd;
    border-radius: 2px;
    width: 200px;
    padding: 3px;
}
}


.form__submit {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

    .form__submit:hover {
        background-color: #0056b3;
    }

.footer {
    margin-top: 20px;
    font-size: 14px;
}



.box {
    border: 2px solid #029ddd;
    padding: 10px; /* Add padding to make the content look spacious */
    border-radius: 3px;
    margin: 5px auto 20px;
    width: 500px; /* Set custom width */
    height: 300px; /* Set custom height */
    display: flex; /* Allow content inside to adjust according to flexbox */
    flex-direction: column; /* Ensure vertical layout for box content */
    justify-content: center;
    /
}
.box--login {
    max-width: 500px; /* Optionally restrict maximum width */
    margin: 0 auto;
}
.box__heading-box {
    background: rgba(199, 223, 247, .4);
    border: 1px solid #029ddd;
    border-radius: 3px;
    font-weight: 600;
}
.box__heading {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center; 
    color: black; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    height: 100%; 
}

.footer {
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 3rem;
    background-color: #029ddd;
    margin-top: 250px;
    text-align: center; 
}
.d-flex{
    display:flex !important;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hindi and English text adjustments */
    .hindi, .english {
        font-size: 22px;
        word-spacing: 30px; /* Reduce word-spacing for smaller screens */
    }

    .bharat {
        margin-bottom: 5px;
    }

    .login-header__right h1 {
        font-size: 20px;
    }

    .login-header__desc {
        font-size: 14px; /* Adjust the font size for smaller screens */
        margin: 0;
        text-align: center;
    }

        .login-header__desc p {
            font-size: 13px; /* Adjust font size for small screens */
        }

    .login-heading {
        font-size: 16px; /* Slightly reduce font size for mobile */
    }
}

@media (max-width: 480px) {
    /* Further adjustments for small mobile screens */
    .hindi, .english {
        font-size: 20px;
        word-spacing: 20px; /* Reduce word-spacing even further */
    }

    .bharat {
        margin-bottom: 5px;
    }

    .login-header__right h1 {
        font-size: 18px;
    }

    .login-header__desc {
        font-size: 12px; /* Reduce font size even further */
        text-align: center;
    }

        .login-header__desc p {
            font-size: 11px; /* Further reduce font size */
        }

    .login-heading {
        font-size: 14px; /* Further reduce font size */
    }

    /* Adjust header image size for mobile */
    .login-header img {
        width: 60px; /* Resize the logo */
        height: 60px;
    }
}