@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.auth-container {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-left {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.auth-right {
    background: linear-gradient(135deg, #886ae2, #9865f0);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: white;
    padding: 4rem;
    position: relative;
}

.auth-right img {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}

.auth-right h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.auth-right p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 80%;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    .auth-right {
        display: none;
    }
}

.auth-form {
    width: 100%;
    max-width: 400px;
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: #f8f7ff;
    border: none;
    border-radius: 1rem;
    font-size: 0.95rem;
    color: #000;
}

.form-input::placeholder {
    color: #999;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 2.75rem;
    color: #886ae2;
}

.form-input:focus {
    outline: none;
    background: #f3f1ff;
    box-shadow: 0 0 0 2px #886ae2;
}

.form-input:focus {
    outline: none;
    border-color: #8b5cf6;
    ring: 2px solid #8b5cf6;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background: #886ae2;
    color: white;
    border: none;
    border-radius: 1rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #7659d1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(136, 106, 226, 0.4);
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #886ae2;
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
}

.auth-footer a:hover {
    text-decoration: underline;
}