
body {
    background: rgba(245, 245, 245, 1);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    background: rgba(245, 245, 245, 1);
}


.title {
    color: #01B273;
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 900;
    position: absolute;
    left: 20px;
    margin: 0;
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10vh;
}


.header-left {
    display: flex;
    align-items: center;
}

.content-left {
    margin-left: 60px;
    margin-bottom: 100px;
}

.header-nav {
    padding: 5px;
    padding-left: 20px;
    margin-right: 30%;
    width: 70vh;
    height: 5vh;
    display: inline-grid;
    border-radius: 35px;
    border: 2px solid #7a7a7a1f;
}

.content {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}


span.header-nav-title {
    color: #4E4E4E;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
}

span.header-nav-desc {
    color: #7A7A7A;
    font-family: 'Roboto';
    font-size: 14px;
}

.loginform {
    position: relative;
    z-index: 2;
    background: white;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 62vh;
    margin-right: 220px;
    border: 2px solid #7a7a7a30;
    border-radius: 20px;
    box-shadow: #7A7A7A 5px 5px 20px 5px;
    padding: 2rem;
}





/* Saisie des champs */
.login-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    outline: none;
    border: 0;
    border-bottom: 2px solid #7a7a7a40;
}

.login-input:focus {
    border-color: #01b172;
}

/* Bouton de connexion */
.login-button {
    width: 100%;
    padding: 12px;
    background-color: #01b172;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 15px;
}

.login-button:hover {
    background-color: #01b172;
}
.create-account:disabled, .login-button:disabled {
    background-color: #ccc;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}


/* Proposition "ou se connecter avec" */
.login-or {
    text-align: start;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #4E4E4E;
    margin: 20px 0;
}

/* Boutons de connexion sociale */
.social-login {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 30%;
    font-size: 1rem;
    cursor: pointer;
}

.social-button i {
    margin-right: 8px;
}

.google {
    background-color: #db4437;
    color: white;
}

.apple {
    background-color: #333;
    color: white;
}

.facebook {
    background-color: #3b5998;
    color: white;
}

.social-button:hover {
    opacity: 0.8;
}

/* Ligne de séparation */
.separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

/* Bouton créer un compte */
.create-account {
    width: 100%;
    padding: 12px;
    background-color: #021526;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
}

.create-account:hover {
    background-color: #021526;
}





.triangle {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 100vh solid #021526;
    border-left: 100vw solid transparent;
}


.text-black {
    color: #4d4d4d;
    font-family: 'Monserrat', sans-serif;
}

.text-green {
    color: #01B273;
    font-family: 'Monserrat', sans-serif;
}

.text-white {
    color: #fff;
    font-family: 'Monserrat', sans-serif;
}

.text-yellow {
    color: #e2e2b6;
    font-family: 'Monserrat', sans-serif;
}

.text-xs {
    font-size: 1.05rem;
}

.text-xm {
    font-size: 1.25rem;
}

.text-4xl {
    font-size: 2.25rem;
}


.font-medium {
    font-weight: 200;
}

.font-bold {
    font-weight: 600;
}

.font-extrabold {
    font-weight: 900;
}


