body, html {
    height: 100%;
    margin: 0;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background: #fff;
    padding:40px 30px;
    border-radius: 10px;
    box-shadow: 0 1px 5px -1px #ccc;
    width: 325px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;margin: 25px 0px 30px 0px;
}

.user-box {
    position: relative;
    margin-bottom: 20px;
}

.user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #333;
    outline: none;
    background: transparent;
}

.user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #aaa;
}

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

button {
    display: inline-block;
    min-width: 100px;
    height: 46px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    border: 1px solid rgb(228, 33, 39);
    background-color: rgb(228, 33, 39);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 4px;
    letter-spacing: 2px;
    font-weight:bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    width: 100% ;
}

button:hover {
    background: #555;
}

.forgot-password {
    display: block;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #555;
}



@media (max-width: 600px) {
    .login-box {
        width: 100%;

    }


    .forgot-password {
        font-size: 12px;
    }
}
