﻿/* General Auth Page Styles */
.auth-page {
    background: linear-gradient(135deg, #001F60, #0049B7);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Form Fields */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Password Field with Toggle */
.password-field {
    position: relative;
}

    .password-field button {
        position: absolute;
        right: 10px;
        top: 35px;
        background: none;
        border: none;
        cursor: pointer;
    }

/* Remember Me */
.remember-me {
    display: flex;
    align-items: center;
}

    .remember-me input {
        margin-right: 10px;
    }

/* Buttons */
.btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary {
    background: #28a745;
    color: white;
}

.google-btn {
    background: white;
    border: 1px solid #ccc;
    color: black;
}

.apple-btn {
    background: black;
    color: white;
}

/* Login Links */
.login-links {
    margin-top: 15px;
}

    .login-links a {
        text-decoration: none;
        color: #0049B7;
    }

.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
}

.validation-summary-errors li {
    margin-left: 0;
    color: red;
    font-weight: 500;
}
