 .auth-wrapper {
        background-color: #f8f9fa;
        display: flex;
        justify-content: center;
        align-items: center;
    
        padding: 2rem;
    }

    .auth-box {
        background: #fff;
        padding: 2rem;
        border-radius: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        width: 100%;
        max-width: 420px;
    }

    .auth-title {
        font-size: 1.75rem;
        font-weight: 600;
        color: #092448;
    }

    .auth-subtitle {
        font-size: 0.95rem;
        color: #6c757d;
        margin-bottom: 1.5rem;
    }

    .auth-label {
        font-size: 0.875rem;
        font-weight: 500;
        color: #343a40;
    }

    .auth-input {
        border-radius: 0.375rem;
        height: 45px;
    }

    .auth-btn {
        background-color: #092448;
        color: #fff;
        font-weight: 600;
        border-radius: 0.5rem;
        padding: 0.6rem;
        width: 100%;
        transition: all 0.2s ease-in-out;
        border: none;
    }

    .auth-btn:hover {
        background-color: #fff;
          color: #061b33;
          border: 1px solid #061b33;
    }

    .auth-link {
        font-size: 0.875rem;
        color: #495057;
        text-align: center;
    }

    .auth-link a {
        color: #092448;
        font-weight: 500;
        text-decoration: none;
    }

    .auth-link a:hover {
        text-decoration: underline;
    }
