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

body {
    font-family: 'Tahoma', 'Verdana', sans-serif;
    background: linear-gradient(to bottom, #5a7fbe 0%, #4e72b8 50%, #3d5a99 51%, #2f4780 100%);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-box {
    background: linear-gradient(to bottom, #245edc 0%, #1941a5 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    text-align: center;
    min-width: 400px;
    border: 2px solid #5a8de8;
}

.user-icon {
    margin: 0 auto 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #6b9eef 0%, #3d6fc9 100%);
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background-image: url('USER ICON.jpg');
    background-size: cover;
    background-position: center;
}

.login-box h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: normal;
}

.login-box p {
    color: #e0e9f7;
    font-size: 14px;
    margin-bottom: 20px;
}

.password-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#password {
    padding: 8px 12px;
    font-size: 14px;
    border: 2px solid #0054e3;
    border-radius: 4px;
    width: 250px;
    font-family: 'Tahoma', sans-serif;
}

#password:focus {
    outline: none;
    border-color: #fff;
}

#loginBtn {
    padding: 8px 20px;
    background: linear-gradient(to bottom, #67c44e 0%, #4fa036 100%);
    color: #fff;
    border: 1px solid #2d7a1f;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#loginBtn:hover {
    background: linear-gradient(to bottom, #75d458 0%, #5bb041 100%);
}

#loginBtn:active {
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}
