body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);    
}

.avatar {
    margin-bottom: 20px;
}

.avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

h1 {
    margin-bottom: 20px;
    color: #4e4d4d;
}

.textbox {
    position: relative;
    margin-bottom: 30px;
    justify-content: flex-start; 
    display: flex;
}

.textbox input {
    width: calc(100% - 35px);
    padding: 10px;
    background: none;
    border: none;
    outline: none;
    color: #000000;
    font-size: 18px;
    border-bottom: 2px solid #ffffff;
    border: 1px solid #000000;
}

.textbox span {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #000000;
}

.textbox button {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #038492;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #025963;
}

a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    margin-right: 10px;
}