* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body.login-page {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
}


.login-container {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    width: 100%;
    max-width: 64rem;
    overflow: hidden;
}

.login-wrapper {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}


.login-image {
    width: 80%;
    display: none;
}

@media (min-width: 768px) {
    .login-image {
        display: block;
    }

}

.login-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.login-content {
    width: 100%;
    padding: 2rem;
}

@media (min-width: 768px) {
    .login-content {
        padding: 3.5rem;
    }
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: black;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #35b492;
    border-radius: 0.375rem;
    outline: none;
}

.input-field:focus {
    border-color: #35b492;
    box-shadow: 0 0 0 2px #35b492;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    margin-top: -5px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #35b492;
    background-color: #35b492;
    color: black;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.login-links {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.login-footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
}


h1 {
    color: white;
    text-align: center;
    font-size: 100px;
    margin-bottom: -70px;
}

h2 {
    color: black;
    font-size: 50px;
}

ul {
    list-style-type: none;
    margin-right: 40px;
    text-align: center;
    display: none;
}

#auth-contenitore {
    max-width: 400px;
    height: 650px;
    margin: 100px auto;
    padding: 20px;
    border: 3px solid black;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#auth-contenitore p {
    color: black;
}

#login-form, #signup-form {
    display: flex;
    flex-direction: column;
}

#login-form, #signup-form p {
    font-size: 12px;
}


input {
    margin-bottom: 10px;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
}

.password-container {
    position: relative;
}

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

button {
    padding: 10px;
    width: 150px;
    background-color: white;
    border: 3px solid black;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

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

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
    box-sizing: border-box;
}

.password-wrapper img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
}


