body {
    position: absolute;
    padding: 0;
    margin: 0;
    background-color: #111;
    color: #eee;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form {
    border-radius: 12px;
    padding: 16px 32px 64px 32px;
    width: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #222;
    border: 1px solid #333;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 1);
}

.head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo {
    width: 90px;
}

.title {
    font-size: 48px;
    font-family: "PT Sans Narrow", serif;
    font-style: normal;
    color: #eee;
}
.title.light {
    font-weight: 400;
}
.title.plane {
    font-weight: 700;
}

.tagline {
    font-size: 28px;
    font-style: italic;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 20px;
}

.error-message {
    color: red;
    margin-top: 16px;
    background-color: lightgray;
    padding: 2px 5px;
    font-weight: bold;
    width: 100%;
    font-size: small;
    border-radius: 3px;
    border: 1px solid red;
}

.input-frame {
    margin-top: 16px;
    box-sizing: border-box;
    /*  border: 1px solid #1d6bdf; */
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #111;
    color: #eee;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 350px;
}

.username {
    margin-top: 32px;
}

.input-icon {
    padding: 0 15px;
    color: #43b1ff;
    font-size: 16px;
}

.input {
    box-sizing: border-box;
    border: 0;
    padding: 16px;
    font-size: 14px;
    background-color: #111;
    color: #eee;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    border-radius: 0 8px 8px 0;
}

/* Change the white to any color */
.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus,
.input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #111 inset !important;
}

/*Change text in autofill textbox*/
.input:-webkit-autofill {
    -webkit-text-fill-color: #eee !important;
}

::placeholder {
    color: #555;
    opacity: 1;
}

.options {
    margin: 25px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 350px;
}

.options-group {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.option-label {
    font-size: 14px;
    color: #666;
    cursor: default;
}

.option-label.link {
    color: #666;
}

.option-label.link:hover {
    color: #1d6bdf;
    cursor: pointer;
}

.signin {
    margin-top: 5px;
    box-sizing: border-box;
    width: 200px;
    padding: 12px 16px;
    border: 0;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    background-color: #1d6bdf;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

.signin:hover {
    background-color: #3d86f3;
}

input[type="checkbox"] {
    appearance: none; /* Removes default styling */
    width: 15px;
    height: 15px;
    background-color: #111;
    border: 1px solid #555;
}

input[type="checkbox"]:not(:checked) {
    background-color: #111;
}

input[type="checkbox"]:checked {
    background-color: #1d6bdf;
    color: #fff;
}
