/* wwwroot/css/identity.css */
body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.auth-container {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
}

    .auth-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffffff, #666666);
        z-index: 1;
    }

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
        color: #ffffff;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.form-label {
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.btn-auth {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: 600;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

    .btn-auth:hover {
        transform: translateY(-2px);
        background: #f0f0f0;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }

.text-danger {
    color: #ff3366 !important;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.validation-summary {
    background: rgba(255, 51, 102, 0.1);
    border-left: 4px solid #ff3366;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-check-label {
    color: #ffffff;
}

.auth-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .auth-link:hover {
        color: #f0f0f0;
        text-decoration: underline;
    }

.alternate-auth-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .alternate-auth-link a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .alternate-auth-link a:hover {
            color: #f0f0f0;
            text-decoration: underline;
        }

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(217deg, rgba(255,255,255,.03), rgba(255,255,255,0) 70.71%), linear-gradient(127deg, rgba(255,255,255,.03), rgba(255,255,255,0) 70.71%), linear-gradient(336deg, rgba(0,0,0,.05), rgba(0,0,0,0) 70.71%);
}
