/* LEFT PANEL */
.left {
    flex: 1;
    padding: 15px 50px;
    background: #f9fafc;
    box-shadow: 0px 0px 2px 0px #d7d8d9;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #ff4d00;
}

.left h1 {
    margin: 20px 0;
}

.feature {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.feature i {
    color: #ff4d00;
    font-size: 20px;
}

.stats {
    display: flex;
    gap: 15px;
    margin-top: -20px;
}

.stat-box {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* RIGHT PANEL */
.right {
    flex: 1;
    padding: 50px;
    background: white;
    box-shadow: 0px 0px 2px 0px #fff;
}

.right h2 {
    margin-bottom: 5px;
}

/* ROLE SELECT */
.role-select {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.role {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.role i {
    display: block;
    margin-bottom: 5px;
}

.role.active {
    border: 2px solid #ff4d00;
    color: #ff4d00;
    background: #fff5f0;
}

/* FORM */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #999;
}

input {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

input:focus {
    border-color: #ff4d00;
    outline: none;
}

.password-rules {
    background: #fff3ed;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #ff4d00;
    color: white;
    margin-top: 15px;
    cursor: pointer;
}

/* SOCIAL */
.social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social button {
    background: white;
    border: 1px solid #ddd;
    color: #333;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .container {
        flex-direction: column;
    }
    .left {
        display: none;
    }
}


.logo-text {
  color: #F54702;
}

.space-ptb {
  padding: 20px 0;
  background: #f9fafc;
}

.log-img{
    width: 100%;
  height: auto;
}
.icon-stg {
  height: 70px;
  width: 70px;
}

.agree-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
}

.agree-container input {
    display: none;
}

/* Custom checkbox */
.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #ff4d00;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
}

/* Checked state */
.agree-container input:checked + .checkmark {
    background: #ff4d00;
}

/* Tick mark */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.agree-container input:checked + .checkmark::after {
    display: block;
}

.agree-container .checkmark::after {
    left: 4px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Text styling */
.agree-text span {
    color: #ff4d00;
    cursor: pointer;
    font-weight: 500;
}

