/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Main Container */
.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
    z-index: 2;
}

/* Slide Container */
.slide-container {
    flex: 1;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.slide-wrapper {
    width: 100%;
    max-width: 600px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 500px;
    padding: 20px;
}

.slide-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideIconFloat 3s ease-in-out infinite;
}

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

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

/* Slide Navigation */
.slide-navigation {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.nav-dot:hover {
    border-color: white;
    transform: scale(1.1);
}

/* Slide Controls */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Login Section */
.login-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    position: relative;
}

/* Top Logo Area */
.top-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.top-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-logo .logo .logo-image {
    width: 210px;
    height: 76px;
    object-fit: contain;
    animation: bounce 2s infinite;
}

.top-logo .logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Login Container */
.login-container {
    background: transparent;
    border-radius: 24px;
    padding: 45px 40px;
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

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

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo i {
    font-size: 5rem;
    color: #dc2626;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sub-text {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.trial-text {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Styles */
.login-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 22px;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

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

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: #999;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 15px 16px 50px;
    border: 2px solid #e1e5e9;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    color: #333;
}

.input-wrapper input:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
    transform: translateY(-1px);
}

.input-wrapper input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15), 0 4px 16px rgba(220, 38, 38, 0.12);
    background: #ffffff;
    transform: translateY(-2px);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper:hover .input-icon {
    color: #dc2626;
    transform: scale(1.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    transform: scale(1.1);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checkbox-wrapper:hover .checkmark {
    border-color: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-color: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    transform: scale(1.05);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #991b1b;
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #dc2626 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    letter-spacing: 0.5px;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    background-position: right center;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.login-btn.loading {
    pointer-events: none;
}

.loading-spinner {
    color: white;
    font-size: 1.1rem;
}

/* Divider */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.divider span {
    background: transparent;
    padding: 0 15px;
    color: #999;
    font-size: 0.9rem;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: transparent;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(220, 38, 38, 0.05);
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.facebook-btn:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.social-btn i {
    font-size: 1.1rem;
}

/* Register Link */
.register-link {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.register-link a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #991b1b;
    text-decoration: underline;
}

/* Background Decoration */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }
    
    .slide-container {
        min-height: 400px;
        padding: 20px;
    }
    
    .slide-wrapper {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-icon {
        font-size: 3rem;
    }
    
    .slide-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .top-logo {
        top: 20px;
        left: 20px;
    }
    
    .top-logo .logo .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .top-logo .logo h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .slide-container {
        min-height: 350px;
        padding: 15px;
    }
    
    .slide-wrapper {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .slide-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .slide-features {
        gap: 10px;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .slide-navigation {
        margin-top: 20px;
    }
    
    .slide-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-slide {
        left: 10px;
    }
    
    .next-slide {
        right: 10px;
    }
    
    .top-logo {
        top: 15px;
        left: 15px;
    }
    
    .top-logo .logo .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .top-logo .logo h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        flex-direction: column;
    }
    
    .slide-container {
        display: none;
    }
    
    .login-section {
        padding: 15px;
        background: white;
        width: 100%;
        min-height: 100vh;
    }
    
    .login-container {
        padding: 30px 20px;
        background: transparent;
        min-width: auto;
    }
    
    .input-wrapper input {
        min-width: auto;
    }
    
    .top-logo {
        top: 10px;
        left: 10px;
    }
    
    .top-logo .logo .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .top-logo .logo h1 {
        font-size: 1.4rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .social-login {
        gap: 10px;
    }
    
    .circle-1 {
        width: 150px;
        height: 150px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .circle-3 {
        width: 80px;
        height: 80px;
    }
}

/* Error States */
.input-wrapper.error input {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-wrapper.error .input-icon {
    color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Success Animation */
.success-animation {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Error and Success Notifications */
.error-notification,
.success-notification {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    font-weight: 500;
}

.success-notification {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
    color: #16a34a;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.error-notification i,
.success-notification i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Support Button */
.support-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #374151;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
}

.support-btn i {
    font-size: 1.1rem;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.support-btn:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: rgba(220, 38, 38, 0.3);
}

.support-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

.support-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .support-btn {
        top: 15px;
        right: 15px;
        padding: 10px 20px 10px 16px;
        font-size: 0.9rem;
        border-radius: 45px;
    }
    .support-btn i {
        font-size: 1rem;
    }
} 

.form-logo-image {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 120px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}
@media (max-width: 768px) {
    .form-logo-image {
        top: 18px;
        left: 18px;
        width: 90px;
    }
}
@media (max-width: 480px) {
    .form-logo-image {
        top: 10px;
        left: 10px;
        width: 70px;
    }
} 

.section-logo-image {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 150px;
    height: auto;
    object-fit: contain;
    z-index: 10;
}
@media (max-width: 768px) {
    .section-logo-image {
        top: 20px;
        left: 20px;
        width: 120px;
    }
}
@media (max-width: 480px) {
    .section-logo-image {
        top: 15px;
        left: 15px;
        width: 100px;
    }
} 

/* Support Modal */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #f3f4f6;
    border-radius: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.support-option:hover {
    border-color: #dc2626;
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.support-option:last-child {
    margin-bottom: 0;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.option-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .support-option {
        padding: 15px;
        gap: 15px;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .option-content h4 {
        font-size: 1rem;
    }
    
    .option-content p {
        font-size: 0.9rem;
    }
} 

/* Register form specific styles */
#registerForm .form-group {
    margin-bottom: 18px;
}

#registerForm .input-wrapper input {
    min-width: 300px;
}

.terms-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
}

.terms-text a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-text a:hover {
    color: #991b1b;
    text-decoration: underline;
}

.password-group {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.password-group .form-group {
    flex: 1;
    margin-bottom: 18px;
}

.password-group .input-wrapper input {
    min-width: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .password-group {
        flex-direction: column;
        gap: 0;
    }
    
    #registerForm .input-wrapper input {
        min-width: auto;
    }
    
    .terms-text {
        font-size: 0.85rem;
    }
}

/* Error and Success Notifications */
.error-notification,
.success-notification {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

.success-notification {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #16a34a;
}

.error-notification i,
.success-notification i {
    font-size: 1rem;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 