/* assets/css/auth.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f7f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
    margin: 0;
}

.form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.form-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.w-100{
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #555;
    border-radius: 4px;
    box-sizing: border-box;
    /* Ensures padding doesn't affect width */
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.forgot-password-link a{
    color: #007bff;
    text-decoration: none;
}


.form-container a:hover {
    text-decoration: underline;
}

.forgot-password-link {
    margin-top: 5px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-decoration: none;
}

a.btn:hover{
    text-decoration: none;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

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

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.text-center a {
    color: #007bff;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

/* Responsive styles for screens 600px and below */
@media (max-width: 600px) {
    body {
        /* Align form to the top instead of center */
        align-items: flex-start;
        background-color: #fff;
        /* Match form background for seamless look */
    }

    .form-container {
        /* Remove box styling to make it full-page */
        box-shadow: none;
        border-radius: 0;
        max-width: 100%;
        min-height: 100vh;
        /* Ensure it takes full viewport height */



        /* Adjust padding for smaller screens */

        padding: 2.5rem 1.5rem;

    }

}




.btn-secondary {

    color: #fff;

    background-color: #6c757d;

    border-color: #6c757d;

}



.btn-secondary:hover {

    color: #fff;

    background-color: #5a6268;

    border-color: #545b62;

}



.btn-success {

    color: #fff;

    background-color: #28a745;

    border-color: #28a745;

}



.btn-success:hover {

    color: #fff;

    background-color: #218838;

    border-color: #1e7e34;

}



.btn-warning {

    color: #212529;

    background-color: #ffc107;

    border-color: #ffc107;

}



.btn-warning:hover {

    color: #212529;

    background-color: #e0a800;

    border-color: #d39e00;

}



.btn-danger {

    color: #fff;

    background-color: #dc3545;

    border-color: #dc3545;

}



.btn-danger:hover {

    color: #fff;

    background-color: #c82333;

    border-color: #bd2130;

}