/*card login/inscription/profil*/

form {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    padding: 3rem;
    border-radius: 2rem;
    background: rgba(20, 0, 0, 0.72);
    border: 1px solid #a30101a3;
    box-shadow: 0 0 0 1px rgba(255, 120, 120, 0.08),
        0 14px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(120, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

form>div {
    display: flex;
    flex-direction: column;
}


h2 {
    text-align: center;
}