.auth-wrapper {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f5f7;
    padding: 2.656vw 1.329vw;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 52.572vw;
    background: #ffffff;
    border-radius: 0.664vw;
    overflow: hidden;
    box-shadow: 0 0.553vw 2.213vw rgba(0, 0, 0, 0.08);
}

.auth-visual {
    background-color: #8A4FFF;
    padding: 2.656vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-visual {
    background-color: #8A4FFF;
}

.visual-content h2 {
    font-size: 1.947vw;
    margin-bottom: 1.573vh;
    font-weight: 700;
    line-height: 1.2;
}

.visual-content p {
    font-size: 0.93vw;
    opacity: 0.9;
    line-height: 1.5;
}

.auth-card {
    flex: 1;
    padding: 3.099vw 2.656vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card h2 {
    color: #2d3748;
    margin-bottom: 0.787vh;
    font-size: 1.771vw;
    font-weight: 700;
}

.auth-description {
    color: #718096;
    margin-bottom: 3.935vh;
    font-size: 0.885vw;
}

.form-group {
    margin-bottom: 2.36vh;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.787vh;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.797vw;
}

.form-group input {
    width: 100%;
    padding: 0.664vw 0.885vw;
    background-color: #f8f9fa;
    border: 0.111vw solid #edf2f7;
    border-radius: 0.443vw;
    font-size: 0.885vw;
    color: #2d3748;
    transition: all 0.2s ease;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input:focus {
    outline: none;
    border-color: #8A4FFF;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.166vw rgba(138, 79, 255, 0.15);
}

.form-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0.885vw;
}

.btn-block {
    width: 100%;
    padding: 0.774vw;
    font-size: 0.93vw;
    margin-top: 1.573vh;
    background-color: #8A4FFF;
    color: white;
    border: none;
    border-radius: 0.443vw;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-block:hover {
    background-color: #7645db;
}

.btn-block:active {
    transform: scale(0.98);
}

#step-2 {
    display: none;
}

#prev-btn {
    background: none;
    border: none;
    color: #718096;
    margin-top: 1.476vh;
    font-size: 0.842vw;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    width: 100%;
}

#prev-btn:hover {
    color: #4a5568;
    text-decoration: underline;
}

.auth-footer {
    margin-top: 3.148vh;
    color: #718096;
    font-size: 0.842vw;
    text-align: center;
}

.auth-footer a {
    color: #8A4FFF;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}