:root {
    --primary: #004B5E;
    --secondary: #ACE5EE;
    --danger: #CB4154;
    --submit: #D9A865;
    --tertiary:#fbfbfb;
}

body {
    background-color: var(--primary);
    background-image: url('../images/boat-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container styles to match mockup */
.auth-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: linear-gradient(86deg, #D7FAFF 0%, #FFF 100%);
}

.auth-image {
    border-right: 1px solid #e5e5e5;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo-container img {
    max-width: 180px;
    height: auto;
    border-radius: 50%;
}

.auth-form {
    width: 50%;
    padding: 40px;
    position: relative;
}

/* Welcome text to match mockup */
.welcome-text {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Form elements to match mockup */
h3 {
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.75rem;
}

.form-label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e1e1e1;
    padding: 10px 0;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background-color: transparent;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Forgot password link */
.forgot-link {
    text-align: right;
    margin-bottom: 15px;
}

.forgot-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-link a:hover {
    color: var(--danger);
}

/* Remember me checkbox */
.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 8px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    color: #555;
    font-size: 0.9rem;
}

/* Login button to match mockup */
.btn-primary, .btn-submit {
    background-color: var(--danger);
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(217, 168, 101, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-primary:hover, .btn-submit:hover {
    background-color: #c49247;
    box-shadow: 0 6px 15px rgba(217, 168, 101, 0.4);
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px;
    margin-bottom: 25px;
}

.alert-success {
    background-color: rgba(172, 229, 238, 0.3);
    color: var(--primary);
}

.alert-danger {
    background-color: rgba(203, 65, 84, 0.1);
    color: var(--submit);
}

/* Back to login for other pages */
.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.back-to-login a:hover {
    color: var(--danger);
}

.back-to-login a i {
    margin-right: 5px;
}

/* Password Requirements */
.password-requirements {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 20px;
    background-color: rgba(0, 105, 131, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.password-requirements ul {
    padding-left: 20px;
    margin-bottom: 0;
}

/* Form validation icons */
.input-icon, .input-group {
    position: relative;
}

.input-icon i, .login-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #999;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        width: 90%;
        margin: 20px;
    }
    
    .auth-image, .auth-form {
        width: 100%;
    }
    
    .auth-image {
        padding: 30px;
        min-height: 200px;
    }
    
    .welcome-text {
        font-size: 2rem;
    }
    
    .logo-container img {
        max-width: 150px;
    }
} 