body { 
    background-color: white;
    padding: 10px;
    font-size: smaller;
    font-style: normal;
}

.links { 
    position: fixed;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 20px;
    font-size: small;
}

h1 {
    text-align: left;
    font-size: 25px;
    font-weight: lighter;
    color: red;
    margin-left: 10px;
    margin-top: 80px;
}

.form-container {
    display: flex;
    justify-content:space-between;
    width: 80%;
    margin: 10px auto;
    margin-left: 10px;
}

.input-section {
    width: 60%;
}

.text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    font-size: 14px;
}

.text input {
    width: 70%;
    height: 25px;
    margin-left: 10px;
}

.container {
    width: 38%;
    font-size: 16px;
    background-color: white;
    padding-top:-10px 0 0;
    padding-bottom:10px ;
    border-radius: 4px;
    margin-right: 8px;
    justify-content: flex-end; 
    display: inline-block;
}

button {
    background-color: rgb(52, 52, 252);
    color: white;
    font-size: 20px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
    cursor: pointer;
    display: block;
    margin: 20px auto;
}

button:hover {
    background-color: darkblue;
}

.logo {
    position: fixed;
    top: 10px;
    left: 10px;
}

.logo img {
    width: 150px;
}