@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover {
    width: 30vw;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-cover {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.span1 {
    margin-bottom: 7vh;
}

.span2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-control {
    width: 426px;
    height: 64px;
    padding-left: 25px;
}

input:hover {
    border: 1px solid #efc81a;
}
.form-control:focus {
    border: 0.2px solid #efc81a;
    outline: 1px solid #efc81a;
}

.form-check {
    margin-left: 75px;
    margin-bottom: 40px;
}
.form-check-input:checked {
    background-color: #efc81a;
    outline: none;
}

.form-check-label {
    color: #696f79;
    font-weight: 500;
    font-size: 16px;
}

.button-regist {
    background-color: #efc81a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 426px;
    height: 64px;
    text-decoration: none;
}

.button-regist:hover {
    background-color: #696f79;
}

.button-login {
    font-weight: 500;
    font-size: 13px;
    color: #efc81a;
    border: none;
}
.button-login:active {
    color: #696f79;
}

.popup {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.popup__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 683px;
    height: 448px;
    border: 2px solid black;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.25);
    opacity: 0;
    background-color: white;
    transition: all 0.5s 0.1s;
}

.popup__content h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #efc81a;
}

.popup__content p {
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    color: #8692a6;
}

.popup__content a {
    width: 426px;
    height: 64px;
    background: #efc81a;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

#modal:target {
    opacity: 1;
    visibility: visible;
}

#modal:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.btn-popUp:link,
.btn-popUp:visited {
    margin-top: 25px;
}

.closePopUp:link,
.closePopUp:visited {
    position: absolute;
    top: 12px;
    right: 20px;
    text-decoration: none;
    color: #000;
    font-size: 30px;
    display: inline-block;
    line-height: 1;
    transition: all 0.3s;
}

.closePopUp:hover,
.closePopUp:active {
    color: #555;
}
