@charset "UTF-8";

@font-face {
    font-family: "Inter Regular";
    src: url(../assets/fonts/Inter-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Inter Semi-Bold";
    src: url(../assets/fonts/Inter-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: "Poppins Regular";
    src: url(../assets/fonts/Poppins-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Poppins Medium";
    src: url(../assets/fonts/Poppins-Medium.ttf);
    font-weight: 500;
}

:root {
    --primary-color: #F37820;
    --secundary-color: #FFF;
    --blue-color: #097E90;
    --orange-light: #FF9F76;
    --background-input: #FFFAF2;
    --border-gray: #CACACA;
    --black: #1A1A1A;
    --dark: #353535;
    --alert: #FF1E1E;

    --font-inter-regular: "Inter Regular", sans-serif;
    --font-inter-semi-bold: "Inter Semi-Bold", sans-serif;
    --font-poppins-regular: "Poppins Regular", sans-serif;
    --font-poppins-medium: "Poppins Medium", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    background-color: var(--primary-color);
    box-sizing: border-box;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0% 16%;
}

.mainFiles {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2% 16%;
}

.sectionForm {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 10% 3%;
    background-color: var(--secundary-color);
    border-radius: 20px;
}

.sectionFormFiles {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 4% 3%;
    background-color: var(--secundary-color);
    border-radius: 20px;
}

.sectionFormTitlePage {
    font-family: var(--font-poppins-medium);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    color: var(--black);
}

.sectionFormDescripton {
    font-family: var(--font-poppins-regular);
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
    color: var(--black);
    margin-top: 30px;
}

.sectionFormStyle {
    display: flex;
    flex-direction: column;
    margin-top: 34px;
}

.sectionFormStyleInputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sectionFormStyleFiles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cardContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cardContainerTitle {
    font-family: var(--font-poppins-medium);
    font-size: 0.875rem;
    color: var(--black);
}

.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.5px solid var(--border-gray);
    border-radius: 10px;
    padding: 9px 16px;
}

.cardImg {
    height: 54px;
    width: 54px;
    margin-right: 12px;
}

.infoDocs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-right: 12px;
}

.infoDocsTitle {
    font-family: var(--font-inter-regular);
    font-size: 0.875rem;
    color: var(--dark);
}

.infoDocsArquivos {
    font-family: var(--font-poppins-regular);
    font-size: 0.75rem;
    color: var(--dark);
}

.sectionFormStyleRadios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sectionFormStyleNumbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.formControl {
    display: flex;
    align-items: center;
    font-family: var(--font-poppins-regular);
    font-size: 1.25rem;
    font-weight: 400;
    gap: 19px;
    cursor: pointer;
}

input[type="radio"] {
    display: grid;
    place-content: center;
    height: 2.5rem;
    width: 2.5rem;
    appearance: none;
    border: 0.5px solid var(--black);
    border-radius: 50%;
    background-color: var(--secundary-color);
    transform: translateY(-0.075em);
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
    font-family: var(--font-poppins-medium);
    color: var(--black);
    font-size: 1rem;
    text-align: center;
    width: 30px;
    padding: 10px 10px;
    border: 0.5px solid var(--border-gray);
    border-radius: 10px;
}

.labelFile {
    display: flex;
    padding: 3px 16px;
    height: 26px;
    border: 1px solid var(--blue-color);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    color: var(--blue-color);
    font-family: var(--font-inter-semi-bold);
    font-size: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

label:hover {
    background-color: #f5f5f5;
}
  

input[type="file"] {
    display: none;
}  

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 0px 16px;
    border: 0.5px solid var(--border-gray);
    border-radius: 10px;
    background-color: var(--background-input);
    height: 47px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    font-family: var(--font-poppins-medium);
    color: var(--black);
    font-size: 1rem;
}

input[type="text"]:focus {
    border: 0.5px solid var(--orange-light);
}

input[type="email"]:focus {
    border: 0.5px solid var(--orange-light);
}

input[type="password"]:focus {
    border: 0.5px solid var(--orange-light);
}

input[type="number"]:focus {
    outline: none;
    border: 0.5px solid var(--orange-light);
}

input[type="radio"]::before {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    border: 0.5px solid var(--primary-color);
    box-shadow: inset 1.875rem 1.875rem var(--primary-color);
}

input[type="radio"]:checked::before {
    transform: scale(1);
    border: 0.5px solid var(--primary-color);
}

input[type="radio"]:checked {
    border: 0.5px solid var(--primary-color);
}

.sectionFormStyleForgot {
    color: var(--blue-color);
    font-family: var(--font-poppins-medium);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 10px;
}

.sectionFormStyleAlert {
    color: var(--alert);
    font-family: var(--font-poppins-medium);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 10px;
}

.sectionFormStyleOutlinedButton {
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secundary-color);
    border-radius: 10px;
    border: 1px solid var(--orange-light);
    color: var(--orange-light);
    font-family: var(--font-inter-semi-bold);
    font-size: 1rem;
    cursor: pointer;
    margin-top: 16px;
    transition: 0.5s;
}

.sectionFormStyleOutlinedButton:hover {
    background-color: var(--primary-color);
    color: var(--secundary-color);
}

.sectionFormStyleButton {
    height: 47px;
    background-color: var(--orange-light);
    border: none;
    border-radius: 10px;
    border-color: var(--orange-light);
    color: var(--secundary-color);
    font-family: var(--font-inter-semi-bold);
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.5s;
}

.sectionFormStyleButton:hover {
    background-color: var(--primary-color);
}

.sectionFormRegister {
    color: var(--primary-color);
    font-family: var(--font-poppins-regular);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin-top: 34px;
}

.trilhasImg {
    width: 50%;
}

@media screen and (max-width: 1024px) {
    main {
        padding: 0% 8%;
    }

    .sectionForm {
        width: 60%;
    }

    .sectionFormFiles {
        width: 60%;
    }
    
    .trilhasImg {
        width: 40%;
    }
}

@media screen and (max-width: 768px) {
    main {
        flex-direction: column-reverse;
        padding: 3% 8%;
    }

    .mainFiles {
        display: flex;
        flex-direction: column-reverse;
        padding-left: 8%;
        padding-right: 8%;
    }

    .sectionForm {
        width: 100%;
    }

    .sectionFormFiles {
        width: 100%;
    }

    .trilhasImg {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    input[type="number"] {
        font-size: 0.875rem;
        width: 20px;
        height: 20px;
        padding: 5px 5px;
    }
}