* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    align-items: center;
}
.header {
    background-color: #ff6600;
    color: white;
    padding: 50px;
    text-align: center;
}
.header h1 {
    margin: 0;
    font-size: 4em
}
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh; /* Full viewport height */
    position: relative;
}
.content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.group {
    margin-bottom: 15px;
    align-items: center;
    display: inline;
    box-sizing: border-box;
}
.group input[type="text"] {
    width: 100%;
    height: 10%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 1em;
}

.group input::placeholder {
    text-align: center;
}


.button_container {
    position: absolute;
    width: 100%;
}

.button_container button {
    position: absolute;
}
.content button {
    width: 25%;
    border: 1px solid #ccc;
    padding: 25px;
    background-color: #ff6600;
    color: white;
    cursor: pointer;
    font-size: 1em;
    flex: 1;
    display: inline;
}

.button_left {
    left: 33%; /* Position at 1/4 of the width */
    transform: translateX(-50%);
}

.button_right {
    left: 66%; /* Position at 3/4 of the width */
    transform: translateX(-50%);
}

.logout {
    position: absolute;
    top: 20px;
    font-size: 2rem;
    color: black;
    text-decoration: none;
}

.logout.right {
right: 20px;
}

.logout:first-of-type {
left: 20px;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}