﻿/*Pages/Auth/Login.razor.css & SignUp.razor.css (same style, modern)
*/
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #c1cb1130, #2575fc);
}

.auth-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 350px;
    text-align: center;
}

    .auth-card h2 {
        margin-bottom: 20px;
        font-weight: 600;
        color: #333;
    }

    .auth-card input.form-control {
        height: 45px;
        border-radius: 8px;
    }

    .auth-card button {
        font-size: 16px;
        font-weight: 500;
    }
