﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman';
}

body {
    background: #60A5FA;
    min-height: 100vh;
}

main.pb-3 {
   /* display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: calc(100vh - 60px) !important;
    padding: 0 !important;*/
}
.container {
   /* max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;*/
}

main {
   /* display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: calc(100vh - 60px) !important;*/
}

.page-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
/*//styling*/
.login-box{
    display:flex;
    justify-content:center;
    flex-direction:column;
    width:440px;
    height:400px;
    padding:30px;
}
h1 {
    margin-top:180px;
    margin-bottom:90px;
    font-size:50px;
    text-align:center;
    justify-content:center;

}
.input-box .input-field {
    width:100%;
    height:60px;
    font-size:17px;
    padding: 0 25px;
    margin-bottom:15px;
    border-radius:30px;
    border:none;
    outline:none;
    box-shadow: 0px 5px 10px 1px rgba(0,0,0, 0.1);
    transition: .3s;
}
.input-field:focus{
    width:105%;
}
.input-submit {
    position: relative;
}
.submit-btn {
    width: 100%;
    height: 60px;
    background: black;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
}
.input-submit label {
    position: absolute;
    top: 45%;
    left: 50%;
    color: white;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.submit-btn:hover {
    background: rgba(0, 0, 0, 0.56);
    transform: scale(1.05,1);
}
.LogIn-error {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    margin: 100px auto 0 auto;
    padding: 10px 20px;
    background: #FEE2E2;
    color: #B91C1C;
    border: 1px solid #EF4444;
    border-radius: 8px;
}
