@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #dfdfdf;
}

.login-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 440px;
    height: 480px;
    padding: 30px;
}

.login-header {
    text-align: center;
    margin: 20px 0 40px 0;
}

.login-header img {
    width: 150px;
    height: auto;
    margin-bottom: 0;
}

.input-box .input-field {
    width: 100%;
    height: 60px;
    font-size: 17px;
    padding: 0 25px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: none;
    box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: .3s;
}

::placeholder{
    font-style: 500;
    color: #222;
}

.input-field :focus {
    width: 105%;
}

.forgot {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section {
    display: flex;
    align-items: center;
    font: 14px;
    color: #555;
}

#check {
    margin-right: 10px;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

section a{
    color: #555;
}

.input-submit {
    position: relative
}

.submit-btn {
    display: flex;             
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #202A44;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.1s;
}

.submit-btn:hover{
    background: #202A44;
    transform: scale(1.05,1);
    text-decoration: none;
}

.sign-up-link{
    text-align: center;
    font-size: 15px;
    margin-top: 20px;

}
.sign-up-link a{ 
    color: #000;
    font-weight: 600;
}

