﻿body {
    margin: 0;
    padding: 0;
}

/* Layout */
.register-section {
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: no-repeat center center;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.register-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}

/* Left */
.register-left {
    flex: 0 0 30%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.register-left-content {
    max-width: 360px;
    position: absolute;
    right: 5%;
    top: 10%;
}

.register-logo {
    width: 180px;
    margin-bottom: 10px;
}

.register-left p {
    font-size: 16px;
    line-height: 1.6;
}

.register-left .highlight {
    font-weight: bold;
}

.register-image {
    width: clamp(300px, 40vw, 550px);
    position: absolute;
    right: clamp(-100px, -8vw, -120px);
    bottom: 80px;
}

/* Right */
.register-right {
    flex: 0 0 70%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px 0 0 40px;
}

.register-form-wrapper {
    width: 100%;
    max-width: 630px;
    position: relative;
    height: 100%;
}

.signin-link {
    margin-bottom: 50px;
    margin-top: 20px;
    text-align: right;
    font-size: 14px;
}

    .signin-link a {
        color: #00a9b7;
        font-weight: 600;
    }

.register-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0px;
    text-align: left;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 6px;
        color: #42919F;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #42919F;
        border-radius: 6px;
        font-size: 14px;
    }

.password-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 36px;
    cursor: pointer;
}

    .toggle-password svg {
        width: 20px;
        fill: #42919F;
    }

#eyeSlashIcon {
    display: none;
}

#eyeSlashIcon2 {
    display: none;
}

/* Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Privacy */
.privacy-note {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #666;
    text-align: left;
    line-height: 1.5;
}

    .privacy-note a {
        color: #00a9b7;
    }

/* Button */
.btn-register {
    width: 100%;
    padding: 14px;
    background: #00a9b7;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-register::after {
        font-family: "Ionicons";
        content: "\f284";
        color: white;
        margin-left: 8px;
        margin-top: 0;
    }

/* Responsive */
@media (max-width: 1380px) {
    .register-left-content {
        max-width: 360px;
        position: absolute;
        right: 5%;
        left: 5%;
        top: 10%;
    }
}
@media (max-width: 1100px) {
    .register-left {
        display: none;
    }

    .register-right {
        flex: 0 0 100%;
        border-radius: 0;
    }

    .register-form-wrapper {
        margin: 0 auto;
        padding: 40px 20px;
    }
}


