* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------------- INDEX ---------------- */

.one {
    background-color: #fdfdfd;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1d1d1f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.wrap {
    background-color: #fdfdfd;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 80px 60px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.contenu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apple {
    display: block;
    margin: 0 auto 30px auto;
    width: 100px;
}

h1 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #1d1d1f;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
}

input:focus {
    border: 2px solid #007aff;
    outline: none;
}

button {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #007aff;
    color: white;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
}

p {
    color: #007aff;
    margin-top: 10px;
    font-size: 0.95rem;
    text-align: center;
}

a {
    text-decoration: none;
}

/* --------------- CODE.HTML ---------------- */

.two {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fdfdfd;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

h5 {
    text-align: center;
    color: #3a3939b4;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.code-wrapper {
    display: flex;
    gap: 30px;
    position: relative;
    cursor: pointer;
    margin-top: 20px;
}

.code-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: white;
    transition: all 0.2s ease;
}

.code-circle.filled {
    background-color: black;
    border-color: black;
}

.hidden-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    outline: none;
    z-index: 10;
}

.three {
    background-color: #fdfdfd;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1d1d1f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Responsive */
@media (max-width: 420px) {
    h3 {
        font-size: 3.5rem;
    }

    h5 {
        font-size: 2.5rem;
    }

    .code-wrapper {
        gap: 20px;
    }

    .code-circle {
        width: 60px;
        height: 60px;
    }
}
