﻿/*
 * Shared Styles for Blazor Identity Account Pages
 * Covers: Register, Login, etc.
*/

/* --- General Page Layout --- */
.account-container {
    max-width: 480px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
    font-family: system-ui, sans-serif;
}

    .account-container h2 {
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 600;
    }

/* --- Common Form Elements --- */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

    .form-floating input {
        width: 100%;
        padding: 1rem 0.75rem;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 1rem;
        background-color: #fff;
    }

    /* Custom label to sit above the input field */
    .form-floating label {
        position: absolute;
        top: -0.65rem;
        left: 0.75rem;
        font-size: 0.85rem;
        background: #f9f9f9;
        padding: 0 4px;
        color: #666;
    }

.btn-account {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: #3f51b5;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .btn-account:hover {
        background-color: #303f9f;
    }

.text-danger {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* --- Shared Link Sections --- */
.account-links {
    text-align: center;
    margin-top: 1.5rem;
}

    .account-links p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
