body {
    background: linear-gradient(to right, #6439FF, #7CF5FF);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.login-container {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    width: 350px;
    text-align: center;
}

.logo {
    width: 175px;
    margin-bottom: 30px;
}

.input {
    border: 1px solid #dbdbdb;
    background-color: #fafafa;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.input:focus {
    border-color: #a8a8a8;
    outline: none;
}

.btn {
    width: 100%;
    height: 35px;
    border-radius: 8px;
    border: none;
    background-color: #0095f6;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

.btn:hover {
    background-color: #007bbf;
}

.register {
    margin-top: 20px;
    background: none;
    border: none;
    color: #0095f6;
    font-weight: bold;
    cursor: pointer;
}

.register a {
    text-decoration: none;
    color: #0095f6;
}

.register a:hover {
    text-decoration: underline;
}
.input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

#password {
    width: 100%;
    padding-right: 40px; /* Make space for the eye icon */
    box-sizing: border-box;
}

.eye {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
}
