.is-invalid {
    border: 1px solid red !important;
}

.alert-danger {
    color: red !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 820px;
    width: 35%;;
}

.login-card {
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 50px 40px;
    width: 80%;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .login-container {
        height: 820px;
        width: 95%;;
    }

    .links {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0;
    }

    .input-field {
        margin-bottom: 15px;
    }

    .logo {
        margin: 0;
    }

}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.input-field {
    width: 90%;
    padding: 18px 15px;
    margin-bottom: 25px;
    border: 1px solid #28a745;
    border-radius: 8px;
    font-size: 15px;
}

.input-field:focus {
    outline: none;
    border-color: #218838;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}

.links a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    margin-bottom: 12px;
}


.login-button {
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 17px 12px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #218838;
}