  body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f5f5f5;
        }

        .container {
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
        }

        .login-section {
            background-color: #fff;
            padding: 50px;
            width: 50%;
        }

        .cube-section {
            width: 40%;
        }

        .cube-section video {
            width: 100%;
            height: 100%;
        }

h1 {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
}

input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 30px;
    border: 1px solid #E5E7F0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

button {
    width: 100%;
    padding: 12px 12px;
    background-color: #4a56e2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #3944c1;
}

a {
    color: #4a56e2;
    font-weight: 500;
    font-size: 14px;
}

.info-section {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.info-section span {
    color: #4a56e2;
    font-size: 20px;
    margin-right: 15px;
}

.info-section p, .info-section small {
    margin: 0;
    font-weight: 500;
}

