﻿.register-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    height: 100vh;
    overflow: hidden;
    background: #f8fafc;
}


.register-left {
    background: linear-gradient(135deg,#28334E,#232D45);
    color: white;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px;
    overflow: hidden;
}


.left-content {
    max-width: 480px;
}


.left-logo {
    width: 90px;
    margin-bottom: 40px;
}


.left-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 25px;
}


.left-desc {
    line-height: 2.2;
    opacity: .9;
    margin-bottom: 45px;
    font-size: 17px;
}

.inputLabel {
    color:#ffff;
}

.left-items {
    display: grid;
    gap: 18px;
    margin-bottom: 50px;
}


.left-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}


    .left-item i {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        background: rgba(255,255,255,.12);
        display: flex;
        align-items: center;
        justify-content: center;
    }


.left-image {
    width: 70%;
    margin-top: 30px;
}


.register-right {
    height: 100vh;
    overflow-y: auto;
    padding: 70px;
    background: white;
}


    .register-right::-webkit-scrollbar {
        width: 8px;
    }


    .register-right::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 20px;
    }


.register-card {
    max-width: 760px;
    margin: auto;
}


.register-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}


.register-subtitle {
    color: #64748b;
    margin-bottom: 35px;
}


@media(max-width:992px) {

    .register-layout {
        grid-template-columns: 1fr;
    }

    .register-left {
        display: none;
    }

    .register-right {
        height: auto;
        padding: 30px 18px;
    }
}
