@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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins' , sans-serif;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--background-color);
}

/* Root styles */
:root {
    --background-color: #EEEEEE;
    --primary-color: #222831;
    --secondary-color: #393E46;
    --text-color-1: #1B262C;
    --text-color-2: #F9F7F7;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 2rem;
    text-align: right;
    background-color: var(--primary-color);
}
.header #login {
    color: var(--text-color-2);
    font-size: 1rem;
    margin-left: 1rem;
    font-weight: bold;
    padding: 0.6rem 0.9rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header #login:hover {
    background: var(--secondary-color);
    padding: 0.6rem 0.9rem;
    border-radius: 5px;
}

.container {
    display: flex;
    height: 70%;
    width: 100%;
    max-width: 350px;
    color: var(--text-color-2);
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 6rem auto 1rem auto;
}

.Sign-Up {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.Sign-Up h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-color-1);
}

.Emailsignup {
    display: flex;
    flex-direction: column;
    margin: 1rem 0 1rem 0;
}

.Emailsignup label {
    margin-bottom: 0.2rem;
    color: var(--text-color-1);
    font-size: 0.9rem;
    font-weight: bold;
}

#Email {
    width: 100%;
    padding: 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--text-color-1);
    font-size: 0.8rem;
}

.Passwordsignup {
    display: flex;
    flex-direction: column;
    margin: 1rem 0 1rem 0;
}

.Passwordsignup label {
    margin-bottom: 0.2rem;
    color: var(--text-color-1);
    font-size: 0.9rem;
    font-weight: bold;
}

#password {
    width: 100%;
    padding: 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--text-color-1);
    font-size: 0.8rem;
}

.Confirm-Password {
    display: flex;
    flex-direction: column;
    margin: 1rem 0 1rem 0;
}

.Confirm-Password label {
    margin-bottom: 0.2rem;
    color: var(--text-color-1);
    font-size: 0.9rem;
    font-weight: bold;
}

#confirm-password {
    width: 100%;
    padding: 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--text-color-1);
    font-size: 0.8rem;
}

.button {
    width: 100%;
    margin-top: 1rem;
    padding : 0.8rem;
    border-radius: 0.5rem;
    text-align: center;
    background-color: var(--secondary-color);
    cursor: pointer;
    color: var(--text-color-2);
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-color);
}
   