* {
    margin: 0;
    box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif;  
}

body {
     margin: 0;
     display: flex;
        justify-content: center;
        align-items: center;    
        height: 100vh;
        background-image: url('background.jpg');
        background-size: cover;   
}
.glass-container {
    width: 300px;
    min-height: 350px;
    height: auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 4px solid #222;  
    color: #fff;
}

.glass-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.login-box  {
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: -20px;
}   

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

input {
    padding: 10px;
    margin: 25px;
    border: none;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;   
}

input::placeholder {
    color: #fff;
}

input:focus {
    outline: none;
}

.options {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 12px;
    color: #fff;   
}

.options input[type="checkbox"] {
   margin-right: 4px;
   margin-top: 0;
   vertical-align: middle;
}

.options a {
    text-decoration: none;
    color: #fff;
    margin-left: auto;
}

button {
    background: transparent;
    color: #fff;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 13px;
    transition: background 0.2s, color 0.2s; border: 0.2s;
}

button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: 1px solid #fff;  
}

p {
    font-size: 12px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 40px; 
}

#show-register,
#show-login {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

#show-register:hover,
#show-login:hover {
    text-decoration: underline;
    color: #fff;
}


#register {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
