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

body {
    background-color: #313D5A;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
}

.main-container {
    background-color: #EAEAEA;
    color: #183642;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 550px;
}

h1{
    font-size: 1.75rem;
    font-weight: 700;
    align-self: center;
}

form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
}

label{
    font-size: 1.2rem;
    font-weight: 500;
}

input{
    padding: 1rem 1.25rem;
    font-size: 1.15rem;
    border-radius: 1rem;
    color: #183642;
    outline: none;
    border: none;
}

input:focus{
    outline: 2px solid #183642;
    outline-offset: 2px;
}

button{
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    font-size: 1.15rem;
    border: none;
    background-color: #73628A;
    color: #f6f4f4;
    font-weight: 700;
    cursor: pointer;
}

button:hover{
    opacity: 0.9;
}

hr{
    width: 100%;
    border: none;
    border-top: 1px solid #183642;
}

p{
    font-size: 1.25rem;
    font-weight: 500;
}



