body {
    background-color: #b5b1b1;
    font-family: Calibri, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
}

h1 {
    margin: 0;
}

nav {
    display: flex;
    gap: 20px;
    
}

a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(94vh - 80px);
}

.container {
    text-align: center;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
}

button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}

button:hover {
    background-color: #f2f2f2d7;
}

button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #d7af78;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}

button:hover {
    background-color: #8a8686;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 10px;
}

.home-button {
    padding: 0px 10px;
    border: none;
    border-radius: 15px;
    background-color: #d7af78;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}

.home-button:hover {
    background-color: #8a8686;
}

.borderless-button {
    padding: 5px 10px;
    border: none;
    border-radius: 15px;
    background-color: #d7af78;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}

.borderless-button:hover {
    background-color: #8a8686;
}

.welcome {
    margin: 20px;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
}

input, .label-su {
    width: 300px;    
}



@media screen and (max-width: 600px) {
  /* Styles for mobile devices */
      body {
        font-size: 14px;
    }

    .container {
        padding: 20px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
  /* Styles for tablets */
}

@media screen and (min-width: 1025px) {
  /* Styles for desktops */
}