
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


body {

    display: flex; /* Enables flexbox on the body */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100vh; /* Ensures the body takes up the full viewport height */
    margin: 0; /* Resets margin */
    background-color: rgb(28, 185, 237);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;

}



.login_box {
    width: 500px;
    /* border: 1px black solid; */
    border-radius: 30px;
    height: 575px;
    background-color: white;
}


.logo {
    width: 90px;
    display: grid;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}


h1 {
    text-align: center;
}

input {
    height: 50px;
    width: 400px;
    border-radius: 30px;
    border: 2px solid #2923ec;
    padding: 20px;
    font-size: 25px;
    margin-left: auto;
    margin-right: auto;
    display: flex;

}

button {
    height: 40px;
    width: 150px;
    border-radius: 30px;
    font-size: 20px;
    background-color: rgb(28, 185, 237);
}

.butn {
    text-align: center;
    margin-top: 20px;
}


.space {
    height: 44px;
    padding: 10px;
}

span {
    margin-left: 50px;
}