html {
    font-size: 1rem;
}

@media (min-width: 2000px){
	html {
	   font-size: 1.4rem;
	}
 }

body {
    font-family: 'Manrope', sans-serif;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    height: 100%;
    background-color: #eff4ff;

}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10vw;
    background-color: white;
    padding: 4rem;
    border-radius: 1rem;
    border: 1px solid rgba(214, 220, 237, 1);
    box-shadow: 0px 4px 20px 0px rgba(219, 226, 244, 1);    
}

h1 {
font-size: 1.6rem;
font-weight: 700;
line-height: 160%;
letter-spacing: 0px;
text-align: center;
color: rgba(36, 35, 46, 1);
margin: 0px;

}

p {
    font-size: 0.87rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0px;
    text-align: center;    
    color: rgba(123, 136, 174, 1);

}

#image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(41, 83, 233, 0.1);
    width: 68px;
    height: 68px;
    border-radius: 100px;
    margin-bottom: 32px;
}

img {
    position: relative;
    width: 32px;
    height: auto;
}

input {
    border-radius: 0.75rem;
}

#input_block {
    align-items: left;
}


#pass {
    width: 25rem;
    margin: 1.25rem 0px 2rem 0px;
    height: 2.5rem;
    background-color: #F7F7FC;
    border: 1px solid #eaeaf7;
    padding: 0.25rem 1rem;
    font-size: 1.25rem;
    letter-spacing: .22222rem;
    font-weight: 600;
    transition: box-shadow 200ms;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
}

#pass::placeholder {
    font-size: 0.87rem;
    letter-spacing: 0px;
    font-weight: 500;
    color: #B8B8C9;
    transform: translateY(-2px);
}

#pass:focus {
    outline: none;
    border: 1px solid #2953E9;
    box-shadow: 0px 0px 0px 3px rgba(41, 83, 233, 0.25);

}

#button {
    cursor: pointer;
    width: 15rem; 
    height: 3rem;
    border-radius: 2.5rem;
    background-color: #2953E9;
    box-shadow: 0px 4px 8px 0px rgba(41, 83, 233, 0.25);
    color: white;
    font-size: 0.87rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    border: none;
    transition: transform 100ms ease-in;

}

#button:hover {
    background-color: #244AD0;
    transform: translateY(2px);
    box-shadow: none;
}

#error {
    width: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background-color: #c03232;
    border-radius: 0.75rem;

}

#error p {
font-size: 0.75rem;
margin-bottom: 0px;
font-weight: 500;
color: #ffffff;
}