/* Auth Pages Styling - Login and Register */

/* Form Container Styling */
.login-form-container,
.register-form-container {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    padding: 40px;
}

.login-form-container::before,
.register-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: var(--accent-color);
    z-index: 2;
}

/* Form Controls Styling */
.auth-form .form-control {
    border: none;
    border-bottom: 2px solid #eaeaea;
    border-radius: 0;
    padding: 15px 0;
    font-size: 16px;
    background: transparent;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
    background: transparent;
}

.auth-form .form-control::placeholder {
    color: #aaa;
    font-size: 14px;
}

.auth-form .form-floating {
    position: relative;
    margin-bottom: 25px;
}

.auth-form .form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.auth-form .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    color: var(--primary-color);
}

.auth-form .form-check-label {
    color: #666;
    font-size: 14px;
}

/* Button Styling */
.btn-login,
.btn-register {
    margin-top: 10px;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.btn-login::after,
.btn-register::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-login:hover::after,
.btn-register:hover::after {
    height: 100%;
}

/* Social Login Styling */
.social-login-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.social-login-divider::before,
.social-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eaeaea;
}

.social-login-divider span {
    padding: 0 15px;
    color: #888;
    font-size: 14px;
}

.btn-social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.btn-social-login i {
    font-size: 18px;
    margin-right: 8px;
}

.btn-social-login.google {
    background: #fff;
    color: #444;
}

.btn-social-login.facebook {
    background: #3b5998;
    color: #fff;
}

.btn-social-login.apple {
    background: #000;
    color: #fff;
}

.btn-social-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Login Page Specific Styling */
.login-benefits-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
}

.login-benefits-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.login-benefits-item i {
    background: rgba(138, 3, 3, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Register Page Specific Styling */
.register-benefits-container {
    position: relative;
    z-index: 1;
}

.register-benefits-item {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 25px;
    border-left: 3px solid var(--accent-color);
}

.register-benefits-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

.register-benefits-item i {
    background: rgba(138, 3, 3, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 20px;
}

.register-benefits-item h4 {
    margin-bottom: 10px;
    font-weight: 700;
}

.register-benefits-item p {
    color: #999;
    margin-bottom: 0;
}

.register-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--accent-color);
}

.register-card:hover {
    transform: translateY(-10px);
}

.register-card .icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(138, 3, 3, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.register-card i {
    font-size: 35px;
    color: var(--accent-color);
}

.register-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.terms-container {
    background: rgba(240, 240, 240, 0.3);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
} 