@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
}
:root {
    --background: #F5F7F8;
    --placeholder: #737578;
    --input: #e8eaec;
    --border: #706D54;
}
html {
    font-family: "Roboto", sans-serif;
    font-size: 16px;

}

body{
    width: 100%;
    height: 100vh;
    background-color: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.container {
    width: 400px;
    max-width: 100%;
    height: 600px;
    border-radius: 20px;
    border: 5px solid var(--border);
    background-color: white; 


}
#form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    /* background-color: red; */
}
.signup-h1 {
    color: var(--placeholder);
    font-weight: 800;
    font-size: 3rem;

}
input, select {
    width: 90%;

    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: var(--input);
    color: var(--placeholder);
    font-weight: 500;
    font-size: 1.1rem;
}
select {
    cursor: pointer;
}
.login p{
    margin: 0px;
    color: var(--placeholder);
}
a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 5px;
}
button {
    width: 150px;
    padding: 10px;
    border-radius: 10px;
    border: none; 
    outline: none;
    cursor: pointer;
    background-color: #00a5ff;
    margin-top: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}