body {
    font-family: Verdana;
    color: #fff;
    background-color: #fff;
    padding: 0;

}

.main-container {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    gap: 5px;
}

.left-container {
    flex: 1;
    padding-left: 30px;
    background-color: #112839;
    border-radius: 10px;
    padding: 5px 15px 15px 15px;
    margin-top: 43px;
}

.middle-container {
    flex: 1;
    padding: 20px;
    background-color: #112839;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    margin-top: 43px;
}

.right-container {
    flex: 1;
    padding: 20px;
    background-color: #112839;
    border-radius: 10px;
    margin-top: 43px;
}

.headline {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
}

.text {
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
}

#username-status,
#email-status {
    margin-left: 10px;
    size: 32px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #2c3e50;
    color: #fff;
    border: 1px solid #ffffff;
    border-radius: 7px;
    cursor: pointer;
}

button:hover {
    background-color: #112839;
}

.error {
    color: red;
}

#status-messages {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flashes {
    width: 100%;
    display: flex;
    justify-content: center;
}

.flash {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
}

.flash.danger {
    background-color: #e74c3c;
    color: white;
}

.flash-success {
    width: 95%;
    padding: 10px;
    margin-top: 20px;
    background-color: #2ecc71;
    color: white;
    border-radius: 5px;
}

#username-status img {
    width: 20px;
    height: 20px;
}

.map-homebase {
    width: 240px;
    height: 80px;
    border: 2px solid;
    border-radius: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.requirements-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 10px;
}

.requirement {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 35px;
    padding: 5px;
    border: 1px solid;
    border-radius: 10px;
}

.email-requirement {
    display: flex;
    align-items: center;
    margin-top: 19px;
    margin-bottom: 26px;
    padding: 5px;
    border: 1px solid;
    border-radius: 10px;
}

.requirement img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.email-requirement img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.red_dot, .green_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red_dot {
    background-color: red;
}

.green_dot {
    background-color: rgb(0, 255, 0);
}
