body {
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background:#F4F7F9;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.login-container {
    background:#FFFFFF;
    padding:40px;
    width:380px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

.profile-circle {
    width:70px;
    height:70px;
    border-radius:50%;
    background:#E2E8F0;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
    position:relative;
}

.profile-circle:hover {
    background:#CBD5E0;
}

h1 {
    font-size:18px;
    margin-top:10px;
    color:#17191C;
}

.login-icon {
    font-size:40px;
    color:#0950C3;
    margin-bottom:10px;
}

h2 {
    margin-bottom:20px;
    color:#17191C;
}

input {
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #CBD5E0;
    border-radius:8px;
    font-size:14px;
}

input:focus {
    border-color:#0950C3;
    outline:none;
}

.password-wrapper {
    position:relative;
}

.toggle-icon {
    position:absolute;
    right:12px;
    top:12px;
    cursor:pointer;
    font-size:16px;
}

button {
    width:100%;
    padding:12px;
    background:#0950C3;
    color:white;
    border:none;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover {
    background:#3C83F6;
}

.success {
    background:#38A169;
    color:white;
    padding:10px;
    border-radius:6px;
    margin-bottom:15px;
    animation:fadeIn 0.6s ease-in;
}

.error {
    background:#E53E3E;
    color:white;
    padding:10px;
    border-radius:6px;
    margin-bottom:15px;
    animation:fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(-5px);}
    to {opacity:1; transform:translateY(0);}
}

.btn-delete {
    background:#E53E3E;
    color:white;
    padding:5px 10px;
    border-radius:6px;
    text-decoration:none;
    font-size:12px;
    transition:0.3s;
}

.btn-delete:hover {
    background:#C53030;
}