@font-face {
    font-family: 'fontModels';
    src: url('../../assets/webfonts/fa-brands-400.woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "spers3";
    src: url(../../build/assets/fonts/spers3.otf);
}

.spers3 {
    font-family: "spers3";
    font-size: 38px !important;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'fontModels', sans-serif;
    background-color: #f5f5f5;
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.header-new {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px #e10a7e;
    left: 0;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logoHeader-new {
    background-image: url(../img/logo_dark.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 65px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h1Main-new {
    font-family: 'fontModels', sans-serif;
    text-align: center;
    color: #333333;
    margin: 0;
    padding-top: 15px;
}

.main-new {
    margin-top: 6rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-container-new {
    background-color: #ffffff;
    padding: 20px;
    padding-bottom: 0px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 330px;
}

.form-new {
    display: flex;
    flex-direction: column;
}

.label-new {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
}

.input-new {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}

.button-new {
    padding: 10px 20px;
    background-color: #e10a7e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-new:hover {
    background-color: #c0086f;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 25% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    text-align: center;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.form-container-new2 {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 2px solid #f15e78;
    max-width: 330px;
}

.confirmMmod {
    color: black;
    font-size: 19px;
}