﻿.auth {
    padding: 6vmin 16px 4vmin;
    display: grid;
    place-items: start center;
}


    .auth .login-card {
        width: min(460px, 92vw);
        color: #3a3a3a;
        font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    }

    .auth .field {
        display: grid;
        grid-template-columns: 130px 1fr;
        align-items: center;
        gap: 12px;
        margin: 18px 0;
    }

        .auth .field label {
            color: #7a7a7a;
            font-size: 16px;
        }


    .auth input[type="text"],
    .auth input[type="email"],
    .auth input[type="password"] {
        padding: 10px 12px;
        border: 1px solid #bdbdbd;
        background: #fff;
        border-radius: 3px;
        font-size: 16px;
        outline: none;
        width: 100%;
    }

        .auth input[type="text"]:focus,
        .auth input[type="password"]:focus {
            border-color: #9a9a9a;
            box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.04);
        }

    .auth .actions {
        text-align: center;
        margin: 16px 0 28px;
    }


    .auth .btn {
        appearance: none;
        background: #fff;
        color: #222;
        padding: 8px 18px;
        border: 2px solid #a5a5a5;
        border-radius: 3px;
        font-size: 16px;
        cursor: pointer;
    }

        .auth .btn:active {
            transform: translateY(1px);
        }


    .auth .btn-primary {
        border: 2px solid #ffbd2e;
    }

    .auth .btn-secondary {
        border: 2px solid #6d90b9;
        color: #2c4b70;
        padding: 10px 22px;
        font-weight: 600;
    }


    .auth .new-users {
        text-align: center;
        margin-top: 40px;
        color: #7a7a7a;
        font-size: 18px;
    }

    .auth .sr-only {
        position: absolute;
        left: -9999px;
    }

.text-danger {
    color: #dc3545;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-top: 8px;
}

.text-success {
    color: #28a745;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-top: 8px;
}

.centered-message {
    text-align: center;
    font-size: 15px;
}

.no-underline {
    text-decoration: none;
}

.back-to-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b5fff; /* primary link color — adjust to match site palette */
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background-color .12s ease, color .12s ease;
}

    .back-to-login:hover,
    .back-to-login:focus {
        background-color: rgba(11,95,255,0.06);
        outline: none;
        text-decoration: none;
    }

.back-icon {
    display: inline-block;
    vertical-align: middle;
}