@import "base.css";

form {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 50px;
    background-color: #E6E6FA;
    margin: auto 0;
}

legend {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

input[type=text], input[type=email], input[type=password] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    border: none;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 16px;
}
  
label {
    font-size: 16px;
    font-weight: bold;
}

a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}