* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

.login-container {
    background: #e0e5ec;
    border-radius: 25px;
    box-shadow: 10px 10px 20px #a3b1c6,
        -10px -10px 20px #ffffff;
    padding: 50px 40px;
    width: 340px;
    text-align: center;
}

.profile-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e0e5ec;    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 6px 6px 10px rgb(163,177,198, 0.5),
        inset -6px -6px 10px rgb(255,255,255, 0.5);
    overflow: hidden;
}

h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field input {
    width: 100%;
    padding: 12px 45px;
    border: none;
    border-radius: 15px;
    background: #e0e5ec;
    box-shadow: inset 6px 6px 10px #a3b1c6,
        inset -6px -6px 10px #ffffff;
    font-size: 0.95rem;
    color: #333;
    outline: none;
}

.input-field i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 20px;
    background: #40a9c3;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 5px 5px 15px #a3b1c6,
        -5px -5px 15px #ffffff;
    transition: 0.2s;
}

.btn:hover {
    background: #3a97af;
}

.options {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #555;
}

.options a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

#toast-container {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 50000 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; 
    gap: .5rem !important;
}

.toast {
    background: #5e4c4c;
    color: #fff;

    padding: .75rem 1rem;
    border-radius: .3rem;

    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    min-width: 220px; /* keep shape aligned */
    
    opacity: 0;
    transform: translateX(20px); /* right side slide-in */
    transition: opacity .3s, transform .3s;
}

.toast.show {
    opacity: 1;  
    transform: translateX(0);
}

