.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: left;
    gap: 200px;
    align-items: center;
    padding: 10px 20px;
    height: 60px;
    z-index: 1000;
}
.logo img {
    position: fixed;
    height: 60px;
    left: 40px;
    top: 11px;
}
.acess {
    background: none;
    border: none;
    color: rgb(246, 193, 4);
    text-decoration: 1px underline rgb(246, 193, 4);
    position: fixed;
    right: 60px;
    top: 30px;
    font-size: 16px;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-color: white;
    padding-left: 10px;
}
.container {
    display: flex;
    margin-top: 100px;
}
.main {
    width: auto;
    height: auto;
    background-color: rgb(242,159,5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 50px;
}
h1 {
    display: flex;
    justify-content: center;
    font-size: 28px;
}
label {
    font-size: 24px;
}
form {
    width: fit-content;
}
input {
    width: 350px;
    font-size: 20px;
    margin-top: 3px;
    margin-bottom: 10px;
    padding: 10px;
}
.cad {
    width: 375px;
    cursor: pointer;
    padding: 10px;
    background-color: rgb(246, 193, 4);
    border: 3px solid white;
    color: black;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 2px 2px 2px gray;
}
button:hover {
    opacity: 0.8;
}
.g-recaptcha {
    display: flex;
    align-items: center;
    justify-content: center;
}
