@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

.home-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 400px;
    display: flex;
    gap: 1rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
}

.left {
    background-color: #f2f2f2;
    width: 50%;
    height: 92%;
    padding: 1rem;
}
.left img {
    width: 100%;
    height: 100%;
}
.right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.right h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
}
input {
    border: 1px solid #dadada;
    border-radius: 5px;
    padding: 0.7rem;
}

.error_span {
    color: red;
    font-size: 12px;
    font-weight: bold;
}

.success_span {
    color: rgba(0, 108, 88, 0.768);
    font-size: 12px;
    font-weight: bold;
}

button {
    border-radius: 5px;
    padding: 0.7rem;
    width: 100%;
    background-color: rgb(43, 85, 255);
    color: white;
    border: none;
    transition: 0.5s ease-in-out;
    font-family: "Roboto", sans-serif;
}

button:hover {
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 1px solid rgb(43, 85, 255);
    background-color: white;
    color: rgb(43, 85, 255);
}
