﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh; /* 100% of the viewport height */
}

.left-side {
    background-image: url('/images/icp_login_bg.svg');
    background-size: cover;
    background-position: center;
    background-color: #1d1f48;
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    color: white; /* Optional: To ensure text is readable on background image */
}

.right-side {
    background-color: #d0d0d0;
    width: 40%;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    box-sizing: border-box;
}

.center-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
}
