body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #0b0714, #19002b);
    font-family: 'Ubuntu', sans-serif;
}

.startButton {
    margin-top: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    max-width: 250px;
    padding: 30px;
    padding-top: 10px;
    padding-bottom: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.547);
    background-color: #31313161;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.045);
    text-align: center;
}

.startButton h1 {
    font-size: 40px;
    width: 100%;
    margin-bottom: 20px;
    color: white;
}

form {
    width: 100%;
}

.form-group {
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
}

.form-group small {
    display: block;
    margin-bottom: 6px;
    color: #aaa;
}

input {
    font-family: "Ubuntu", sans-serif;
    width: 87%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: rgba(32, 32, 32, 0.592);
    color: white;
    font-size: 16px;
    transition: 0.2s;
}

input:focus {
    outline: none;
    border-color: #83e8ff;
}

.startButton button {
    font-family: "Rubik", sans-serif;
    margin-top: 10px;
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.startButton button:hover {
    transform: translate(0, -3px);
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    font-size: 18px;
    transition: 0.2s;
}

.eye-icon:hover {
    color: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(32, 32, 32, 0.592) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.footer {
    position: absolute;
    bottom: 60px;
    width: 100%;
    text-align: center;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: "Roboto", sans-serif;
}

.footer a {
    text-decoration: none;
    color: #aaa;
}