* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    margin: 0;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

footer {
    color: turquoise;
    margin-top: 30px;
}

.container {
    width: 350px;
}

.login-box {
    background:#262626;
    border: 1px solid black;
    padding: 40px;
    text-align: center;
}

.logo {
    font-family: 'Billabong', cursive;
    font-size: 48px;
    margin-bottom: 30px;
    color: turquoise;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    color: turquoise;
    background: black;
    border: 1px solid black;
    border-radius: 3px;
}

.login-box button {
    width: 100%;
    padding: 8px;
    background: black;
    color: turquoise;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.login-box button:hover {
    background:turquoise;
    color:  #262626;
}
.password-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
}

.password-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.password-wrapper .toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: turquoise;
    font-size: 18px;
}

@media (max-width: 480px) {
    .password-wrapper input {
        padding: 10px 35px 10px 12px;
        font-size: 14px;
    }

    .password-wrapper .toggle-icon {
        font-size: 16px;
    }
}

