#realm {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #e2e8f0;
}

#realmContents {
    margin-top: auto;
    margin-bottom: auto;
    width: 500px;
}

#realmWrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#realmForm {
    margin-top: 3rem;
    background-color: #f1f5f9;
    padding: 3rem;
    border-radius: 0.25rem;
}

#realmImage {
    width: 33.333333%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#realmLabel {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

#realmInput {
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem;
    margin: 8px 0;
    border: 1px solid #cfd8e3;
    border-radius: 4px;
    box-sizing: border-box;
}

#realmButton {
    display: block;
    background-color: #5850ec;
    color: white;
    width: 100%;
    height: 3rem;
    margin-top: 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

#realmButton:hover {
    background-color: #6875f5;
}

#realmButton:focus {
    outline: 4px solid #cfdafa;
    border-radius: 5px;
}

.realmButtonDisabled {
    background-color: #5145cd !important;
    opacity: 0.5;
    cursor: not-allowed !important;
}

#realmError {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 13px;
    font-weight: 600;
    padding: 0.5rem 0;
    color: #ee4949;
    border: 1px solid #c71313;
    border-radius: 4px;
}

#realmError i {
    margin: 0 0.5rem;
}
