
body, html {
    height: 100%;
    margin: 0;
    font-family: SourceSansPro, Arial, sans-serif;
    background-color: #fff;
}

.login-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.login-box {
	display: flex;
	gap: 1rem;
	max-width: 100%;
	width: 100%;
}


.login-column, .register-column, .hero-column {
	background-color: var(--hover-button);
	padding: 40px;
	flex: 1 1 0px;
	border-radius: 50px;
}
.register-column .modern-button {
	padding: 1rem;
	border-radius: 30px;
}
.register-column{
    background-color: var(--sky-blue) ;
}
.hero-column{
    padding:0;
}
.hero-column img {
	object-fit: contain;
	height: 100%;
	width: auto;
	max-width: 444px;
}

h1 {
	font-size: 38px;
	color: var(--dark-grey);
	margin-bottom: 10px;
	font-weight: 600;
}

p {
    color: var(--dark-grey);
    margin-bottom: 30px;
    font-size: 1.3em;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-blue);
    text-align: center;
    color: var(--bs-body-color);
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-blue);
    background-color: var(--light-blue);
    border-radius: 0;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: left;
}



a {
    color: var(--dark-blue);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}
.field {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.field input {
  width: 100%;
  padding: 18px 12px 8px;
  font-size: 16px;
  border: 1px solid #999;
  border-radius: 6px;
  outline: none;
  margin-bottom:1rem;
}


.field label {
	position: absolute;
	left: 12px;
	top: 40%;
	transform: translateY(-50%);
	color: var(--dark-blue);
	background: transparent;
	pointer-events: none;
	transition: 0.3s ease-in-out;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: #222;
}

@media (max-width: 768px) {
    .login-box {
        flex-direction: column;
    }
    .login-column, .register-column {
        width: 100%;
        box-sizing: border-box;
    }
}
