* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body,html {
    margin: 0;
    height: 100%;
}

.auth-page {
    height: 100vh;
    width: 100%;
    background-image: url("bgimage/ms.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* form card */
.auth-box {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.55);
    .auth-box input, .auth-box button {
        width: 100%;
        margin-bottom: 15px;
        padding: 12px;
        border-radius: 8px;
        font-size: 16px;
    }
    /* Mobile adjustments */
     @media screen  and (max-width: 480px) {
        .auth-box {
            padding: 20px;
            border-radius: 12px;
        }
        .auth-box input, .auth-box button {
            padding: 10px;
            font-size: 14px;
        }
     }
    padding: 35px;
    border-radius: 16px;
    width: 400px;
    text-align: center;
}

/* inputs */
.auth-box input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* buttons */
.auth-box button {
    padding: 12px 28px;
    margin: 12px 6px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    outline: none;
}

.auth-box buttons:hover {
    opacity:0.85;
}

/* links */
.auth-box a {
    display: block;
    margin-top: 12px;
    text-decoration: none;
    font-size: 15px;
}

.auth-boxn.forgot {
    color: red;
}