﻿body {
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    font-family: 'Jost', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000; /* Original shadow from your design */
    position: relative;
    overflow: hidden;
}

    .auth-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #573b8a, #6d44b8);
        z-index: -1;
        filter: blur(5px);
        opacity: 0.7;
    }

    .auth-container h1 {
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 1.8rem;
        color: white;
    }

.auth-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.auth-container input {
    width: 100%;
    padding: 12px 15px;
    margin: 0.5rem 0 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

    .auth-container input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .auth-container input:focus {
        outline: none;
        border-color: #573b8a;
        background: rgba(255, 255, 255, 0.15);
    }

.auth-button {
    width: 100%;
    padding: 12px;
    margin: 1.5rem 0;
    background: #573b8a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .auth-button:hover {
        background: #6d44b8;
        transform: translateY(-2px);
    }

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.auth-remember {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

    .auth-remember input {
        width: auto;
        margin-right: 0.5rem;
    }

.auth-link {
    color: #b8a1ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

    .auth-link:hover {
        color: #d1c4ff;
        text-decoration: underline;
    }

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-copyright {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.text-danger {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin: -0.5rem 0 0.5rem;
}
