* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1F2937;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body {
        display: block;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.hello-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    transition: opacity 0.8s ease-out;
}

.hello-animation.hidden {
    opacity: 0;
    pointer-events: none;
}

.hello-text {
    font-size: 80px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    animation: textFade 0.4s ease-in-out;
}

@keyframes textFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.main-container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #3B4557 0%, #2D3748 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
}

.main-container.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .main-container {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
}

.main-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.main-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.back-button {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.back-button:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-4px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.7);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInButton {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .content-wrapper {
        height: auto;
        min-height: 100vh;
    }
}

.left-section {
    background: url('img/23.jpg') center/cover;
    position: relative;
    padding: 60px;
    display: flex;
    align-items: center;
    animation: slideInLeft 0.8s ease-out;
}

.left-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(17, 24, 39, 0.85) 100%);
}

.left-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.join-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #3B82F6;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn-outline {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-primary {
    padding: 12px 32px;
    background: #3B82F6;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    animation: glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.right-section {
    background: linear-gradient(135deg, #2D3748 0%, #1F2937 100%);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.right-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.right-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.signup-card {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.card-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dot {
    color: #3B82F6;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInUp 0.5s ease-out both;
}

.form-group:nth-child(1) {
    animation-delay: 0.5s;
}

.form-group:nth-child(2) {
    animation-delay: 0.6s;
}

.form-group:nth-child(3) {
    animation-delay: 0.7s;
}

.form-group:nth-child(4) {
    animation-delay: 0.8s;
}

.form-group label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.form-group.focused label {
    color: #3B82F6;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 44px 14px 16px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(10px);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-wrapper input:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 8px 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-wrapper input:focus ~ .input-icon {
    color: #3B82F6;
    transform: translateY(-50%) scale(1.1);
}

.toggle-password {
    pointer-events: all;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group.half {
    margin: 0;
}

.login-link {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 8px;
    animation: fadeInUp 0.5s ease-out 0.9s both;
}

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

.login-link a:hover {
    color: #60A5FA;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3B82F6;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    margin-top: 12px;
    animation: fadeInUp 0.5s ease-out 1s both, glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    background: #2563EB;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.btn-submit:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .left-section {
        min-height: 50vh;
        padding: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .right-section {
        padding: 40px;
        min-height: 50vh;
    }

    .card-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 32px 24px;
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .right-section {
        padding: 32px 24px;
        min-height: auto;
    }

    .card-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-form {
        gap: 16px;
    }

    .form-group {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .back-button {
        top: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .back-button svg {
        width: 16px;
        height: 16px;
    }

    .left-section {
        padding: 60px 20px 30px;
        min-height: auto;
    }

    .join-label {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .right-section {
        padding: 30px 20px 40px;
        min-height: auto;
    }

    .card-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .signup-form {
        gap: 16px;
    }

    .form-group {
        margin-bottom: 0;
    }

    .form-group label {
        font-size: 11px;
    }

    .input-wrapper {
        position: relative;
    }

    .input-wrapper input {
        padding: 13px 44px 13px 14px;
        font-size: 16px;
        border-radius: 10px;
        min-height: 48px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 15px;
        min-height: 50px;
        margin-top: 8px;
        border-radius: 25px;
    }

    .login-link {
        font-size: 13px;
        margin-top: 12px;
    }

    .toggle-password {
        padding: 12px;
        right: 2px;
        cursor: pointer;
    }

    .input-icon {
        right: 12px;
    }

    .form-row {
        gap: 12px;
    }
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background: #3B82F6;
    border-color: #3B82F6;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container:hover .checkmark {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.forgot-password {
    color: #3B82F6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #60A5FA;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .checkbox-container {
        padding: 4px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .forgot-password {
        padding: 4px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        font-size: 13px;
    }

    .info-message {
        padding: 14px;
        font-size: 13px;
    }

    .info-message p {
        font-size: 13px;
    }
}

.info-message {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease-out 0.7s both;
}

.info-message svg {
    flex-shrink: 0;
    color: #3B82F6;
    margin-top: 2px;
}

.info-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 30000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-out;
    max-width: 400px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #10B981;
}

.notification.error {
    border-left: 4px solid #EF4444;
}

.notification.info {
    border-left: 4px solid #3B82F6;
}

.notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    color: #10B981;
}.notification.error .notification-icon {
    color: #EF4444;
}

.notification.info .notification-icon {
    color: #3B82F6;
}

.notification-message {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #ffffff;
}

@media (max-width: 480px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

.password-strength {
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-strength.visible {
    opacity: 1;
}

.strength-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.strength-fill.weak {
    width: 33%;
    background: #EF4444;
}

.strength-fill.medium {
    width: 66%;
    background: #F59E0B;
}

.strength-fill.strong {
    width: 100%;
    background: #10B981;
}

.strength-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.strength-text.weak {
    color: #EF4444;
}

.strength-text.medium {
    color: #F59E0B;
}

.strength-text.strong {
    color: #10B981;
}


.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    animation: fadeInUp 0.5s ease-out 1.1s both;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInButton 0.6s ease-out forwards;
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-social:hover::before {
    width: 300px;
    height: 300px;
}

.btn-social:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-social:active {
    transform: translateY(0) scale(0.98);
}

.btn-google:hover {
    border-color: rgba(66, 133, 244, 0.5);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
}

.btn-github:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-social:nth-child(1) {
    animation-delay: 0.6s;
}

.btn-social:nth-child(2) {
    animation-delay: 0.8s;
}

.btn-social svg {
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.btn-social:hover svg {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .social-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-social {
        width: 100%;
        padding: 16px;
        min-height: 50px;
    }
    
    .divider {
        margin: 20px 0;
    }
    
    .divider span {
        font-size: 12px;
        padding: 0 12px;
    }
}


@media (max-height: 800px) {
    .right-section {
        padding: 40px;
    }
    
    .card-title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .signup-form {
        gap: 16px;
    }
    
    .form-group {
        gap: 6px;
    }
}

@media (max-height: 700px) {
    .right-section {
        padding: 30px;
    }
    
    .card-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .signup-form {
        gap: 14px;
    }
    
    .social-buttons {
        margin-bottom: 16px;
    }
    
    .divider {
        margin: 16px 0;
    }
}
