body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
}

/* padding for div */

.p-up10{
    padding: 10% 0 0 0;    
} 

/* color */
.col_fff{
    color: #fff;
}

/* font */
.f_size_10{
    font-size: 1em;
}
.grayt{
    color: #3a3a3b;
}
.redt{
    color: #af0000;  
}

.login-container {
    width: 300px;
    padding: 3% 2% 5% 2%;
    background-color: #fff;
    border-radius: 5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #99e4f7;
}

.input-group {
    margin-bottom: 15px;
    margin-right: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
button:hover{
    background-color: #2e8505;
    color: #ffffff;
}

.reset-password {
    margin-top: 10px;
    text-align: center;
}

.reset-password a {
    color: #007bff;
    text-decoration: none;
}

/* login text */
.title_text2 {
    display: block;
    color: rgb(78, 100, 221);
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
}
.title_text3 {
    display: block;
    color: rgb(83, 81, 81);
    padding-top: 5px;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
}
/* span {
    color: #af0000;
} */

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-container {
    position: relative;
}

#fileInput {
    width: calc(100% - 32px);
    padding: 10px;
    margin-bottom: 10px;
}

#fileSelector {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

@media (max-width: 576px) {
    input {
        width: 100%;
    }

    .login-container {
        margin-top: 20%;
        margin-bottom: auto;
    }

}