body {
    font-family: 'Roboto';
    margin: 0;
    background-color: #fff;
    color: #131416;
}

* {
    box-sizing: border-box;
}

p:first-child {
    margin-top:0;
}

p:last-child {
    margin-bottom:0;
}

.container {
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto
}

form {
    display: flex;
    flex-direction: column;
    grid-row-gap: 16px;
}

label {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #131416;
    font-family: 'Plus Jakarta Sans';
}

.twoLabel {
    justify-content: space-between;
}

.passReset {
    display: flex;
    align-items: center;
    grid-column-gap: 8px;
}

a, a:hover {
    text-decoration: none;
    color: #131416
}

input[type="text"], input[type="number"], input[type="email"], input[type="password"], input[type="tel"],input[type="date"], input[type="radio"], select, textarea {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
    color: #131416;
    outline: none;
    font-family: 'Plus Jakarta Sans';
}

textarea {
    height: 120px;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans';
    line-height: normal;
}

input[type="text"]:disabled, input[type="tel"]:disabled {
    background: #f5f6f7;
    cursor: no-drop;
}

img {
    max-width: 100%;
    width: auto
}

button, .btn, .button, input[type="submit"] {
    background-color: #ffd952;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border: none;
    outline: none;
    grid-column-gap: 10px;
    width: 100%;
    color: #131416;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
}

input[type="submit"].red {
    background:#f52301;
    color:#fff;
}

button i {
    font-size: 18px;
}

.tab-header {
    display: flex;
    cursor: pointer;
}

.tab-header div {
    padding: 10px 20px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    margin-right: 5px;
}

.tab-header .active {
    background-color: #007bff;
    color: white;
}

.tab-content {
    display: none;
    padding: 25px;
    border: 1px solid #cfcfcf;
    border-radius: 12px;
}

.tab-content.active {
    display: block;
}