/* Auth Section */
.auth-section {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, 
        rgba(34, 197, 94, 0.05),
        rgba(59, 130, 246, 0.05),
        rgba(168, 85, 247, 0.05)
    );
    opacity: 0.5;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    border: 1px solid #2d2d2d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.auth-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #22c55e00, #22c55e40, #22c55e00);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #ffffff90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #9ca3af;
    font-size: 0.9375rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #1f1f1f;
    border: 1px solid #2d2d2d;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #22c55e;
    background-color: #262626;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #2d2d2d;
    background-color: #1f1f1f;
    cursor: pointer;
    position: relative;
    appearance: none;
    transition: all 0.2s;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: #22c55e;
    border-color: #22c55e;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 1px;
}

.checkbox-text {
    color: #9ca3af;
    font-size: 0.875rem;
}

.forgot-password {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.forgot-password:hover {
    color: #16a34a;
    text-decoration: underline;
}

.auth-submit {
    width: 100%;
    padding: 0.875rem;
    background-color: #22c55e;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.auth-submit:hover {
    background-color: #16a34a;
    transform: translateY(-1px);
}

.auth-redirect {
    text-align: center;
    margin-top: 1.5rem;
    color: #9ca3af;
    font-size: 0.9375rem;
}

.auth-redirect a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.auth-redirect a:hover {
    color: #16a34a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-container {
        margin: 1rem;
        padding: 2rem;
    }
}