@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* .inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

:root {
    --primary_blue: #2563EB;
    --secondary_gray: #6B7280;
    --accent_green: #10b981;
    --bg-color_offwhite: #f1f1f0;
}




/* Primary: Blue (#2563EB) → trust & clarity

Secondary: Gray (#6B7280) → neutrality

Accent: Green (#10B981) ya Purple (#7C3AED) → highlight / CTA buttons */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

.nav-items h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;

}

.nav-container {
    padding: 50px;
    display: flex;
    justify-content: space-between;
}

.addContact_btn {
    background-color: var(--secondary_gray);
    border: none;
    outline: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: x-large;
}

.addContact_btn:hover {
    background-color: #5a606c;
}


.contacts-container {
    font-family: "Poppins", sans-serif;
    /* background-color: var(--primary_blue); */
    padding: 30px;
}

.all-contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.contact {
    background-color: var(--bg-color_offwhite);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    cursor: pointer;
}

.contact:hover {
    background-color: #d4ddff;
}

.user-icon {
    font-size: 50px;
    color: var(--secondary_gray);
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.contact-icons span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary_gray);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: x-large;
    padding: 5px;
    width: 50px;
    height: 50px;
}

.name-number {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;

}

.name-number p {
    margin-bottom: 0px;
    font-size: larger;
}

a {
    color: white;
}

/* Contact details page */
.contact_detail_container {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.contact_container {
    padding: 50px;
    background-color: var(--bg-color_offwhite);
    border-radius: 20px;
}

.actionButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.actionButtons button {
    background-color: var(--secondary_gray);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: x-large;
    padding: 5px;
    width: 50px;
    height: 50px;
    border: none;
}

.name {
    text-transform: uppercase;
}

.contact_details {
    display: flex;
    justify-content: space-between;
}

/* create new Contact */
.createContact_container {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#createContactForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.form-elem {
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    /* width: 40%; */
}

.form-elem input {
    border: none;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 10px;
    width: 400px;
    box-shadow: 0px 0px 8px -5px rgba(0, 0, 0, 0.75);
}

.form-elem span {
    color: red;
    font-size: larger;
}

#createBtn {
    background-color: var(--secondary_gray);
    border: none;
    outline: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: x-large;
    color: white;
    box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 0.75);
}

#createBtn:hover {
    background-color: #5a606c;
    box-shadow: 0px 0px 15px -4px rgba(0, 0, 0, 0.75);

}

.newContactBtn {
    display: flex;
    justify-content: center;
    padding: 50px;
}

/* Auth */

.logout-btn {
    background-color: var(--secondary_gray);
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: large;
    padding: 8px;
    /* width: 50px;
    height: 50px; */
    border: none;
}

.logout-btn:hover {
    background-color: #5a606c;

}

a {
    text-decoration: none;

}

.login_container {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

#login-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.login-form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form-fields input {
    border: none;
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 10px;
    width: 400px;
    box-shadow: 0px 0px 8px -5px rgba(0, 0, 0, 0.75);
}

.login-btn button {
    font-family: "Poppins", sans-serif;
    background-color: var(--secondary_gray);
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: large;
    padding: 10px 15px;
    /* width: 50px;
    height: 50px; */
    border: none;
}

.registerPage-link p a{
    color: var(--secondary_gray);
    text-align: center;
}

.register_container {}

.register-form {}