@import url("https://fonts.googleapis.com/css2?family=BenchNine&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BenchNine&family=Changa&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abyssinica+SIL&family=Roboto:wght@300&display=swap");

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: rgb(14, 18, 27);
    color: white;
    font-family: "BenchNine", sans-serif;
    font-family: "Changa", sans-serif;
    font-family: "Abyssinica SIL", serif;
}

.sign-up-con {
    background-color: rgb(14, 18, 27);
    color: white;
    min-height: 100vh;
    font-size: 14px;
    display: grid;
    place-content: center;
}

.sign-up-con h1:nth-child(1) {
    max-width: 360px;
    font-size: 24px;
    text-align: left;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 29px;
}

.sign-up-con form {
    box-sizing: border-box;
    text-align: left;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sign-up-con .label-input {
    display: flex;
    gap: 1em;
}

.sign-up-con .label-input .inner-lp label:nth-child(1),
.sign-up-con .email-number .inner-lp label:nth-child(1),
.sign-up-con .select-con label:nth-child(1) {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: rgb(163, 163, 163);
}

.sign-up-con .select-con {
    display: grid;
    gap: 0.5rem;
}

.sign-up-con .label-input .inner-lp input:nth-child(2),
.sign-up-con .email-number .inner-lp input:nth-child(2) {
    margin: 0px;
    width: 100%;
    box-sizing: border-box;
    height: 44px;
    background-color: rgb(52, 59, 74);
    border-radius: 0.25rem;
    outline: none;
    padding: 1rem;
    color: white;
}

.sign-up-con .select-con .options {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    background: rgb(31, 39, 58);
    border-radius: 8px;
    padding: 1rem;
    box-sizing: border-box;
    border: none;
    color: rgb(253, 248, 248)
}

.sign-up-con .select-con .options select {
    background-color: transparent;
    border: none;
    color: rgb(0, 0, 0);
    width: 100%;
    outline: none;
}


.sign-up-con button {
    height: 44px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    background-color:  rgb(17, 153, 250);
    cursor: pointer;
    margin: 20px 0;
}

.sign-up-con button p {
    border: 0;
    font-size: 100%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    color: white;
}

.sign-up-con .link {
    text-decoration: none;
    color: rgb(17, 153, 250);
    font-weight: 600;
}



/* MEDIA QUERRY */
@media (max-width: 360px) {
    .sign-up-con form {
        width: 95%;
    }
    .sign-up-con .label-input {
        display: flex;
        flex-direction: column;
    }
}