/* ════════════════════════════════════════════════ */
/* ▶ SECTION STYLING                                */
/* ════════════════════════════════════════════════ */

.section1 { background-color: #f17fb2; }
.section2 { background-color: #ffce00; }
.section3 { background-color: #f17fb2; }
.section4 { background-color: #ee3a37; }

section {
    padding-top: 0;
}

/* ════════════════════════════════════════════════ */
/* ▶ LOGIN CONTAINER                                */
/* ════════════════════════════════════════════════ */

.login-container {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 50%;
    box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 30px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
}

.label1 {
    display: block;
    text-align: left;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: grey;
    margin-bottom: 5px;
}

input {
    display: block;
    margin-top: 16px;
    padding: clamp(10px, 2vw, 12px);
    border: 1px solid #ccc;
    border-radius: 16px;
    box-sizing: border-box;
    font-size: clamp(1rem, 2vw, 1rem);
    color: #0051a4;
    font-weight: 500;
    width: 80%;
}

input:focus {
    border-color: #0051a4;
    outline: none;
}

@media (max-width: 600px) {
    .login-container {
        width: 90%
    }
}