*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: serif, sans-serif;
    background-color: rgba(218, 177, 218, 0.2);
}
body a{
    text-decoration: none;
    color: purple;
}

.auth-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 30px;
}
/* Left & right text blocks */
.about,
.details {
    width: 25%;
    text-align: center;
}

.login,
.register {
  width: 420px;     
  max-width: 90vw;
  padding: 40px;
  box-sizing: border-box;
  background:
    linear-gradient(rgba(218, 177, 218, 0.4), rgba(218, 177, 218, 0.4)),
    url("/EliAriCom/image/back_login.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about {
   font-family: serif, sans-serif;
   font-size: 16px;
}
.about img{
   width: 120px;
   height: auto;
}
.details{
   font-family: serif, sans-serif;
   font-size: 16px;
}
input {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border: 2px solid purple;
    border-radius: 7px;
    box-sizing: border-box;
}
.role {
    width: 100%;
    max-width: 350px;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    background-color: whitesmoke;
    border: 2px solid purple;
    border-radius: 7px;
}
.country {
    width: 100%;
    max-width: 350px;
    font-size: 14px;
    padding: 20px;
    text-align:center;
}
button {
    width: 100%;
    max-width: 350px;
    font-size: 14px;
    padding: 20px;
    text-align: center;
    border: 2px solid red;
    border-radius: 4px;
}

/* Mobile layout */
@media (max-width: 480px) {
    .auth-layout {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .about,
    .details{
        width: 100%;
        max-width: 350px;
         font-size: 12px;
    }
    .login,
    .register {
	width: 100%;
	max-width: 350px;
	padding: 30px;
	background-color: rgba(218, 177, 218, 0.4);
	box-sizing: border-box;
    }
    .about {
        order: 1;
    }

    .login {
        order: 2;
    }
    .register {
        order: 2;
    }

    .details {
        order: 3;
    }
}