/* Base styles */
.form-container {
    width: 400px;
    height: auto;
    margin: 120px auto;
    padding: 50px;
    border: 1px solid rgba(52, 58, 64, 0.16);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    background-color: rgba(52, 58, 64, 0.48); 
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    margin: 0;
    font-size: 24px;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    color: white;
}

.form-control {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-actions button:hover {
    background-color: #0056b3;
}

.login-r-s {
    font-size: small;
    margin-inline: 50px;
    color: white;
    text-align: center;
}

.login-r-s a {
    text-decoration: none;
}

.content-main {
    background-image: url("/static/assets/font-bg/tp1.jpg");
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.otp-verification-container {
    display: flex;
    justify-content: center;
}

.otp-verification-card {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(52, 58, 64, 0.48);
    margin: 70px auto;
    color: white;
    font-weight: bold;
}
.otp-verification-card button{
    float: right;
}
.errorlist , .messages-login {
    color: red;
    background-color: white;
    border-radius: 5px;
}


/* Responsive styles */
@media (max-width: 768px) {
    .form-container {
        width: 90%;
        margin: 30% auto;
        padding: 15px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-control {
        font-size: 12px;
    }

    .form-actions button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .login-r-s {
        margin-inline: 10px;
        font-size: 12px;
    }
    .content-main{
        display: initial;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 18px;
    }
    .form-actions button {
        font-size: 14px;
        padding: 8px 12px;
    }
    .login-r-s {
        font-size: 10px;
    }
}
