@import url('../../Fonts/Poppins/poppins.css');
@import url('../../Fonts/Ubuntu/ubuntu.css');

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-page {
    font-family: 'Poppins';
    width: 75%;
    height: 45%;
    padding: 10px 10px;
    margin: 48px 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e0e;
    border-radius: 20px;
}

.title-div {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    margin-top: 80px;
    margin-left: 30px;
    font-size: 2.5rem;
    padding: 10px;
}

.title-icon {
    width: 60px;
    height: 60px;
}

.title {
    color: #fff;
    font-size: 2.5rem;
}

.form {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    padding: 10px;
}

.form div {
   padding: 5px;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: row;
}

.form .input {
    margin: 0 10px;
    height: 50px;
    width: 70%;
    color: #fff;
    font: 400 16px;
    border: none;
    border-radius: 4px;
    border: 2px solid rgb(118, 118, 118);
    line-height: 24px;
    background-color: transparent;
}

.form button {
    cursor: pointer;
    color: #fff;
    height: 48px;
    padding: 0 20px;
    margin: 10px 10px;
    background-color: #0b57d0;
    border: none;
    border-radius: 50px;
}

.form button:hover {
    background-color: #0560f3;
}

.form .buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
}

.accountlink {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: 50px;
}

.accountlink:hover {
    background-color: #0d1435;
}

@media screen and (max-width: 950px) {
    .signup-page {
        flex-direction: column;
        align-items: start;
    }

    .title-div {
        display: flex;
        align-items: start;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 35%;
        margin-top: 20px;
        margin-left: 0px;
    }

    .form {
        align-items: start;
        width: 100%;
        height: 65%;
    }

    .form div {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
    }

    .form div .input {
        width: 100%;
    }

    .form .buttons {
        justify-content: space-between;
    }
}

@media screen and (max-width: 660px) {
    .signup-page {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        padding: 10px 10px;
        margin: 0;
        border-radius: 0;
        flex-direction: column;
    }

    .title-div {
        display: flex;
        align-items: start;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 15%;
    }

    .form {
        width: 100%;
        height: 27%;
    }
}