body {
    background: url('../login_image/imaginee-transformed.png') no-repeat center center fixed;
    font-family: 'Arial', sans-serif;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
}

.register-form {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 25%;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #fff;
}

p {
    margin: 10px 0;
    font-size: 1.1em;
}

input {
    width: 80%;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    background: transparent;
    color: white;
}

input::placeholder {
    color: white;
}

button {
    padding: center;
    margin-top: 20px;
    background-color: #f6f6f6;
    width: 50%;
    height: 40px;
    border-radius: 40px;
    border: none;
    color: black;
}

button:hover {
    background: #606f8f;
}

button.inactive {
    background-color: #a0a0a0;
    color: #666;
    position: relative;
}
/*
button.inactive:hover::after {
    content: attr(title);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.9em;
}
*/

@media only screen and (max-width: 811px) {
    .register-form{
        width:80%;
    }
}