* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    background-image: url(../img/bnner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
}
.login-box {
    width: 95%;
    height: 20rem;
    background-color: white;
    margin: auto;
    border-radius: 1rem;
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 800;
}
.form {
    width: 80%;
    margin-top: 3rem;
}
.mobile {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile input {
    width: inherit;
    height: 2.5rem;
    border-radius: 60px;
    outline: none;
    border: 1px solid #ccc;
    padding-left: 2rem;
}
.password {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.password input {
    width: inherit;
    height: 2.5rem;
    border-radius: 60px;
    outline: none;
    border: 1px solid #ccc;
    padding-left: 2rem;
}
.btn {
    width: 100%;
    height: 2.5rem;
    background-color: #0084ff;
    border-radius: 60px;
    margin-top: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.btn button {
    border: none;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    outline: none;
    color: white;
    font-size: 1rem;
    background-color: #0084ff;
}
.mobile img {
    width: 1.5rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}
.password img {
    width: 1.5rem;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
}
