/* Splashh Screen */
body {
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 5px;
    top: 10%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.toggle-password:hover {
    color: #007bff;
}