@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background: url('foto/D1.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.login-box {
    background-color: white;
    width: 400px;
    height: 450px;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.title {
    font-size: 35px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: -10px;
}

.subtitle {
    font-size: 18px;
    color: gray;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-size: 17px;
    margin: 10px 0 5px;
    text-align: left;
    margin-left: 120px;
    width: 100%;
    color: #414040;
}

input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 70%;
    box-sizing: border-box;
}

.login-button {
    background-color: #000000;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 38px;
    width: 40%;
    font-weight: bold; 
}

#loginForm input[type="text"],
#loginForm input[type="password"] {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 10px; 
}

.login-button:hover {
    background-color: #222223;
}

.signup {
    font-size: 16px;
    margin-top: 15px;
}

.signup a {
    color: #007BFF;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}

#loginForm input[type="text"],
#loginForm input[type="password"] {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.input-container {
    position: relative;
    width: 70%;
    display: flex;
    align-items: center;
}

.input-container input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
}

.eye-icon {
    position: absolute;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    bottom: 19px;
}

.eye-icon:hover {
    color: #000;
}

.signup {
    font-size: 16px;
    margin-top: 15px;
    color: #666;
}

.signup a {
    color: #007BFF;
    text-decoration: none;
}

.signup a:hover {
    text-decoration: underline;
}

.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px; 
    background: rgb(188, 228, 255);
    border-radius: 50%;
    opacity: 1;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}
