* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #09090f;
    font-family: Arial, sans-serif;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 420px;
    background: #141420;

    border: 1px solid #25253a;

    border-radius: 20px;

    padding: 40px;

    box-shadow:
        0 0 30px rgba(0, 0, 0, .35);
}

.logo {
    text-align: center;
    font-size: 50px;
    margin-bottom: 15px;
}

h1 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 35px;
}

label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 15px;

    background: #1c1c2e;
    border: 1px solid #30304a;

    border-radius: 12px;

    color: white;
    font-size: 14px;

    margin-bottom: 20px;
}

input:focus {
    outline: none;
    border-color: #2563eb;
}

input::placeholder {
    color: #6b7280;
}

button {
    width: 100%;
    padding: 15px;

    border: none;
    border-radius: 12px;

    background: #2563eb;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: .2s;
}

button:hover {
    background: #1d4ed8;
}

.error {
    margin-top: 15px;
    text-align: center;
    color: #ef4444;
    display: none;
}
#toastContainer {

    position: fixed;

    top: 20px;
    right: 20px;

    z-index: 99999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sileo-toast {

    min-width: 320px;

    background:
        rgba(20, 20, 32, .95);

    border:
        1px solid #2a2a45;

    border-radius:
        22px;

    padding:
        18px 20px;

    backdrop-filter:
        blur(20px);

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    color:
        white;

    box-shadow:
        0 12px 40px rgba(0,
            0,
            0,
            .35);

    transform:
        translateX(120%);

    opacity:
        0;

    animation:
        slideIn .45s cubic-bezier(.2,
            .9,
            .2,
            1) forwards;
}

.sileo-toast.success {

    border-left:
        4px solid #2563eb;
}

.sileo-toast.error {

    border-left:
        4px solid #ef4444;
}

.toast-icon {

    width: 44px;
    height: 44px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.success .toast-icon {

    background:
        rgba(37, 99, 235, .2);

    color:
        #60a5fa;
}

.error .toast-icon {

    background:
        rgba(239, 68, 68, .2);

    color:
        #f87171;
}

.toast-content h4 {

    margin: 0;
    font-size: 15px;
}

.toast-content p {

    margin-top: 4px;
    color:
        #9ca3af;

    font-size:
        13px;
}

@keyframes slideIn {

    to {

        transform:
            translateX(0);

        opacity:
            1;
    }
}