@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');
@import url('//db.onlinewebfonts.com/c/9c7513c4c5f4197ab2f6968f4d78207b?family=Telex+Regular');
@import url('//db.onlinewebfonts.com/c/860c3ec7bbc5da3e97233ccecafe512e?family=Circular+Std+Book');
@import url('//db.onlinewebfonts.com/c/fb97856149471d306ae4e6e0d850d99e?family=Alef');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: black;
}

:root {
    --font-family-primary: 'Roboto', sans-serif;
    --font-family-secondary: 'telex';
    --font-family-tertiary: 'alef';
}

.container {
    width: 100%;
    display: flex;
}

.background {
    width: 40%;
    background-image: url(./images/background.svg) ;
    background-repeat: no-repeat;
    background-size: cover;
}
.page {
    width: 90%;
    background-color: white;
    border-radius: 35px;
}
.dropdown {
    position: relative;
    display: inline-block;
    width: 95%;
    margin: auto;
    text-align: right;
    padding-top: 20px;
}

.dropbtn {
    background-color: transparent;
    border: none;
    color: #E5E5E5;
    font-family: var(--font-family-primary);
    font-size: 24px;
    cursor: pointer;
}

.fa {
    color: #E5E5E5;
}

.fa:hover,
.fa:focus {
    color: black;
}

.dropdownlist {
    display: none;
    position: absolute;
    background-color: #E5E5E5;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    margin-top: 20px;
    font-size: 16px;
    font-family: var(--font-family-primary);

}

.dropdownlist a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.active {
    display: block;
}

.create {
    padding-top: 70px;
    width: 70%;
    margin: auto;
}

.account {
    color: #000000;
    font-family: var(--font-family-tertiary);
    font-size: 40px;
    font-weight: 700;
}

.stage2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.google {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
}
.google a,
.facebook a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-family: var(--font-family-primary);
}

.facebook {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
}
.or {
    padding-top: 70px;
    text-align: center;
    padding-bottom: 20px;
}

.or p {
    font-family: var(--font-family-primary);
    font-size: 30px;
    color: rgba(0, 0, 0, 0.39);
}

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

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

.name {
    padding: 30px 0px;
    border: none;
    color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-family: var(--font-family-primary);
    font-weight: normal;
}

.name:focus {
    outline: none;
    color: black;
}

.email {
    padding-top: 50px;
    border: none;
    color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-family: var(--font-family-primary);
    font-weight: normal;
}

.email:focus {
    outline: none;
    color: black;
}

.eye {
    position: absolute;
    height: 30px;
    width: 30px;
    right: 20px;
    top: 40%;
    transform: translateY(-50%)
}

.eyeslash {
    margin-top: 50px;
    border: none;
    color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-family: var(--font-family-primary);
    font-weight: normal;
    position: relative;
    margin-bottom: 40px;
}

.eyeslash input {
    border: none;
    color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 24px;
    font-family: var(--font-family-primary);
    font-weight: normal;
}
.password:focus {
    outline: none;
    color: black;
}

#hide1 {
    display: none;
}

.button {
    padding: 20px 0px;
    border: none;
    color: rgba(0, 0, 0, 0.3);
    background-color: #BDC6D7;
    border-radius: 8px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    font-family: var(--font-family-tertiary);
    margin-bottom: 50px;
}

.button:hover {
    background-color: white;
    color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.25);

}

.login {
    display: flex;
}

.login h3 {
    color: rgba(0, 0, 0, 0.3);
    font-size: 24px;
    font-family: var(--font-family-primary);
    font-weight: normal;
}

.login a {
    color: rgba(0, 0, 0, 0.3);
    font-size: 24px;
    font-family: var(--font-family-primary);
    text-decoration: none;
}

.login a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 425px) {
    .container{
        width: 100%;
    }
    .background {
        width: 40%;
    }
    .page {
        width: 60%;
    }
    .or p{
        font-size: 18px;
    }
    .account {
        font-size: 23px;
    }
    .stage2{
      gap: 30px;
    }
    .name {
        font-size: 18px;
    }
    .email {
        font-size: 18px;
    }
    .eyeslash input {
        font-size: 18px;
    }
    .google {
        width: 60%;
        flex-direction: column;
    }
    .google a,
.facebook a {
    font-size: 12px;
    text-align: center;
}
.facebook {
    width: 60%;
    flex-direction: column;
}
.button {
    font-size: 20px;
}
.login h3 {
    font-size: 16px;
}
.login a {
    font-size: 16px;
}
}