/* Login and Signup Specific Styles */
.auth-section {
    padding: 120px 0;
    background: #f4f7f6;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.auth-header p {
    color: #777;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control-custom:focus {
    border-color: #ff3c00;
    box-shadow: 0 0 12px rgba(255, 60, 0, 0.3);
    outline: none;
    transform: scale(1.01);
}

.btn-auth {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #ff3c00, #ff6600);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-auth:hover {
    background: linear-gradient(45deg, #e63600, #ff3c00);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 60, 0, 0.4);
}

.btn-auth:active {
    transform: translateY(0);
}

/* Pulse animation for the logo */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.logo-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #666;
}

.auth-footer a {
    color: #ff3c00;
    font-weight: 600;
}

/* Signup Features */
.signup-features {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 20px;
    color: #ff3c00;
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Floating Animation for icons or elements */
.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.error-msg {
    color: #d9534f;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .auth-section {
        padding: 60px 0;
    }
    .auth-container {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 10px;
    }
    .auth-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .auth-header h2 {
        font-size: 22px;
    }
    .btn-auth {
        padding: 12px;
        font-size: 15px;
    }
}
