@font-face {
    font-family: "samsungone";
    src: url("/font/SamsungOne-400.woff");
}

body {
    background-color: #fff;
    font-family: samsungone, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
}

.container-success {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 70%;
    margin: auto;
    overflow: hidden;
}

.error {
    color: red;
    font-size: 15px;
    margin-top: 5px;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.title {
    text-align: center;
    font-size: 40px;
}

.logo-header {
    max-width: 150px;
}

.navbar {
    display: flex;
    justify-content: space-around;
}

.text-center {
    text-align: center;
}


input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
    width: 100%;
    padding: 6px;
    /* margin-bottom: 0px; */
    /* border-radius: 5px; */
    border: none;
    background-color: #6b686873;
    border-bottom: 1px solid #fff;
    outline: none;
    padding-inline: 5px;
    color: black;
    font-size: 25px;
    margin-top: 5px;
}

input:focus {
    border-bottom: 1px solid #10e0e7;
}

input:focus+label {
    color: #10e0e7 !important;
}

.form-container>div {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #fff;
}

.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 20px;
}

.checkbox {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.grid-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    gap: 20px;
}

.btn-submit {
    background: black;
    border: none;
    padding: 15px 29px;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .grid-form {
        grid-template-columns: 1fr;
    }

    .grid-checkbox {
        grid-template-columns: 1fr;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        gap: 10px;
    }

    .container {
        width: 80%;
        margin: auto;
        overflow: hidden;
    }

}

input[type="checkbox"]::before {
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
