* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #0167b1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 1em;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 300px;
    text-align: center;
    color: black;

    img {
        width: 185px;
        height: 120px;
    }
}

.login-box h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: medium;
    font-family: Arial;
    color: rgb(65, 105, 225);
    letter-spacing: 2.925px;
    margin-bottom: 2em;
}

.user-form {
    margin: 0;
    font-size: small;
}
.user-box {
    position: relative;
    margin-bottom: 1em;
}

.user-box input {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    color: black;
    font-size: 16px;
}

.user-box label {
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(65, 105, 225);
    pointer-events: none;
    transition: 0.3s;
    font-weight: normal;
    font-size: small !important;
}

.user-box input:focus ~ label,
.user-box input:valid ~ label {
    top: -20px;
    font-size: 12px;
}

input[type="checkbox"] {
    float: none !important;
    appearance: auto !important;
    display: inline !important;
    opacity: unset !important;
    margin: 0 !important;
    vertical-align: middle !important;
}