@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap');

* {
    font-family: 'Cherry Bomb One', cursive;
    color: #BD4F6C;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    background-image: url(/img/cloud.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #F4E1E6;
}

.title {
    text-align: center;
}

.login-window {
    position: absolute;
    text-align: center;
    border: none;
    width: min-content;
    min-width: 410px;
    padding: 20px;
    border-radius: 65px;
    left: 50vw;
    top: 50vh;
    box-shadow: 5px 5px 70px 0px #BD4F6C;
    transform: translate(-50%,-50%);
    background-color: #F9F0F3;
}

.login-window > h1 {
    text-align: center;
    margin: 0;
    margin-top: 25px;
    font-size: 2.7rem;
}

.login-window > input {
    width: calc(100% - 10px);
    font-size: 1.1rem;
    padding: 5px;
    border: 1px solid #BD4F6C;
    border-radius: 7px;
    margin-bottom: 10px;
}

.login-window > button {
    background-color: #E9C4CE;
    border: none;
    font-size: 1.1rem;
    border-radius: 7px;
}

.login-window > input::placeholder {
    color: #BD4F6C;

}

.login-window > p {
    font-size: 1.7rem;
}