@font-face {
    font-family: 'JuliusSansOne-Regular';
    src: url('../font/JuliusSansOne-Regular.ttf');
}

@font-face {
    font-family: 'Kodchasan-Lightitalic';
    src: url('../font/Kodchasan-LightItalic.ttf');
}

@font-face {
    font-family: 'Kodchasan-Regular';
    src: url('../font/Kodchasan-Regular.ttf');
}

@font-face {
    font-family: 'Kodchasan-ExtraLightitalic';
    src: url('../font/Kodchasan-ExtraLightItalic.ttf');
}

@font-face {
    font-family: 'Kodchasan-Light';
    src: url('../font/Kodchasan-Light.ttf');
}

@font-face {
    font-family: 'Kodchasan-Medium';
    src: url('../font/Kodchasan-Medium.ttf');
}

@font-face {
    font-family: 'Kodchasan-SemiBold';
    src: url('../font/Kodchasan-SemiBold.ttf');
}


body {
    font-family: 'Kodchasan-Regular';
    background-color: #DBD5EA;
    color: #000;
    margin: 0;
}

a {
    text-decoration: none;
}

.truc-haut {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parent {
    margin-block: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background-color: #6b5f89;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 90%;
}

.form-title {
    font-family: 'JuliusSansOne-Regular';
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.form-input {
    width: 90%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Kodchasan-Regular';
    background-color: #DBD5EA;
    color: #000;
    resize: none; /* Désactiver le redimensionnement si souhaité */
    overflow: auto; /* Activer le défilement si besoin */
}

.form-label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.c {
    height: 150px;
    text-align: left;
    vertical-align: top;
}

.form-input:focus {
    outline: 2px solid #fff;
    box-shadow: 0 0 5px #fff;
}

.form-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-family: 'Julius Sans One', sans-serif;
    background-color: #fff;
    color: #6b5f89;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transition: 0.3s ease;
}

.form-button:hover {
    background-color: #2a223e;
    transform: scale(1.05);
    color: #ffffff;
}

.sent {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #DBD5EA;
    padding: 16px;
    font-family: 'JuliusSansOne-Regular';
}

.flex2>a {
    text-decoration: none;
    background-color: #DBD5EA;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Kodchasan-Regular';
    margin-top: 16px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}

.flex2>a:hover {
    background-color: #b3a8d0af;
    transform: scale(1.05);
}

.flex3 {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    margin-inline: 16px;
}

.flex3>a {
    background-color: #6b5f89;
    color: white;
    padding: 16px;
}

.flex3>a:hover {
    background-color: #4e4468;
}