@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;800&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
}

.page-wrapper {
    position: relative;
    height: 100vh;
    background: #F8F8F8;
}

header {
    height: 30vh;
}

.img-wrapper {
    position: absolute;
    left: calc(50vw - 125px);
    top: calc(30vh - 125px);
    background: #F8F8F8;
    margin: 0 auto;
    padding: 50px;
    border-radius: 100%;
    text-align: left;
    width: 250px;
    height: 250px;
    outline: 10px solid #F8F8F8;
}

.page-body {
    background-color: #CDE2D9;
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

img {
    width: 100%;
    height: 100%;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    margin: 0 auto;
    margin-top: 200px;
}

.input-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 30px;
}

.input-label {
    width: 100%;
    display: flex;
    flex-direction: column;
}

input {
    width: 100%;
    border-radius: 3px;
    border: 2px solid #1A6468;
    padding-left: 10px;
}

.button {
    color: #F8F8F8;
    background-color: #E84E0F;
    border: 0;
    border-radius: 3px;
    width: 100%;
    padding: 10px 0;
    margin-top: 25px;
}

.button:active {
    transform: translateY(2px);
}

.forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password > a {
    font-size: 16px;
    color: grey;
}

.notification-title {
    color: #E84E0F;
    margin-bottom: 30px;
    font-size: 28px;
}

.notification-pw {
    color: black;
    font-size: 16px;
}

ul.errorlist {
    list-style: none;
    padding: 0;
}

.errorlist li {
    display: block;
    margin: 5px 0;
    font-size: 16px;
}