* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: linear-gradient(135deg, #36313b 0%, #3b3541 50%, #30253b 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    background: rgba(45, 45, 55, 0.95);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.left-section {
    flex: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.438) 0%, rgba(78, 70, 229, 0.664) 100%),
                url('../img/purple-moon.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-left: 20px;
    background: linear-gradient(45deg, #73069e, #1e1725);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Poppins', sans-serif;
}

.back-button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.hero-content {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.dots {
    display: flex;
    gap: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.575);
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.right-section {
    flex: 1;
    background: rgba(45, 45, 55, 1);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 40px;
}

.form-title {
    font-size: 36px;
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.form-subtitle a {
    color: rgba(124, 58, 237, 1);
    text-decoration: underline;
    text-decoration-color: rgba(124, 58, 237, 0.5);
}

.form-subtitle a:hover {
    color: rgba(147, 51, 234, 1);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

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

.input-field {
    width: 100%;
    padding: 16px 20px;
    background: rgba(60, 60, 70, 0.8);
    border: 1px solid rgba(80, 80, 90, 1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-field:focus {
    border-color: rgba(124, 58, 237, 0.8);
    background: rgba(70, 70, 80, 0.9);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.checkbox {
    width: 18px;
    height: 18px;
    background: rgba(60, 60, 70, 0.8);
    border: 1px solid rgba(80, 80, 90, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox.checked {
    background: rgba(124, 58, 237, 1);
    border-color: rgba(124, 58, 237, 1);
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label a {
    color: rgba(124, 58, 237, 1);
    text-decoration: underline;
    text-decoration-color: rgba(124, 58, 237, 0.5);
}

.create-button {
    width: 100%;
    padding: 16px;
    background: rgba(124, 58, 237, 1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.create-button:hover {
    background: rgba(147, 51, 234, 1);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.divider {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 24px;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(80, 80, 90, 1);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background: rgba(60, 60, 70, 0.5);
    border: 1px solid rgba(80, 80, 90, 1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-button:hover {
    background: rgba(70, 70, 80, 0.7);
    transform: translateY(-1px);
}

.google-icon, .apple-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.google-icon {
    background: transparent;
}

.apple-icon {
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        margin: 10px;
    }

    .left-section {
        height: 300px;
        padding: 30px;
    }

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

    .right-section {
        padding: 40px 30px;
    }

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

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

    .social-buttons {
        flex-direction: column;
    }
}