@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "Jost";
}
body {
    min-height: 100vh;
    max-height: 200vh;
    position: relative;
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-width: 90vw;
    height: 100%;
}
.form {
    box-shadow: 0 0 12px rgba(0,0,0,.3);
    width: 100%;
    margin-top: 20px;
    padding: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
}
.form h3 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    text-transform: uppercase;
}
.logo {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.input {
    margin-bottom: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    
}

.checkbox {
    height: 0;
    width: 0;
    position: absolute;
}
.checkbox-label {
    padding-right: 25px;
    position: relative;
    font-weight: 300;
    cursor: pointer;
    text-align: right;
}

.checkmark{
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #78BE20;
    cursor: pointer;
    color: white;
    transition: 0.4s background-color, 0.4s border;
}

.checkbox:checked + .checkmark {
    background-color: #78BE20;
}

.button {
    background-color: #78BE20;
    border: none;
    color: white;
    padding: 10px;
    margin-top: 25px;
}

.alert {
    background-color: #f67878;
    color: white;
    padding: 10px 15px;
    margin-bottom: 25px;
}