﻿html, body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
/* Login form field styles */
.bp-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bp-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
    margin-bottom: 2px;
}

.bp-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.23);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background: transparent;
}

    .bp-input:hover {
        border-color: rgba(0,0,0,0.87);
    }

    .bp-input:focus {
        border: 2px solid #1976D2;
        padding: 13px 15px;
    }

.bp-validation {
    color: #d32f2f;
    font-size: 0.75rem;
    margin-top: 2px;
}

.bp-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}