    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
        background: #0E0B12;
        font-family: 'Poppins', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        color: #FFFFFF;
    }

    .login-container {
        background: transparent;
        padding: 30px 20px;
        width: 100%;
        max-width: 360px;
    }

    .login-container h2 {
        text-align: center;
        margin-bottom: 24px;
        font-weight: 600;
        color: #FFFFFF;
    }

    .form-group label {
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
    }

    .form-control {
        background: transparent;
        border: none;
        border-bottom: 1px solid #A163F2;
        border-radius: 0;
        padding: 10px 5px;
        color: #FFFFFF;
        font-size: 15px;
    }

    .form-control:focus {
        background: transparent;
        outline: none;
        box-shadow: none;
        border-bottom: 1px solid #B844AD;
    }

    .btn-login {
        background-color: #B844AD;
        color: #FFFFFF;
        font-weight: 600;
        border: none;
        border-radius: 30px;
        padding: 10px;
        margin-top: 20px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .btn-login:hover {
        background-color: #9955E2;
        transform: scale(1.02);
    }

    .bottom-text {
        text-align: center;
        margin-top: 16px;
        font-size: 14px;
        color: #B0B0B0;
    }

    .bottom-text a,
    .form-group a {
        color: #A163F2;
        text-decoration: underline;
    }

    .bottom-text a:hover,
    .form-group a:hover {
        text-decoration: none;
        color: #B844AD;
    }

    .floating-alert {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050;
        width: 90%;
        max-width: 400px;
        background: #1E1E2E;
        color: #FFFFFF;
        padding: 15px;
        border: 1px solid #B844AD;
        border-radius: 10px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    ::placeholder {
        color: #B0B0B0;
    }