* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.register-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 40px 20px;
}

.register-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.register-card {
    /* width: 550px; */
    max-width: 800px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding:35px 20px 0px 20px;
    position: relative;
    z-index: 10;
    overflow: auto;
    max-height: 900px;
    margin-top: 10px;

}

.register-header {
    text-align: center;
    margin-bottom: 1px;
}

.logo {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    margin-bottom: 1px;
}

.logo span {
    color: #ff8a00;
}

.register-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.register-header p {
    color: #666;
    font-size: 14px;
}

.register-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.form-row .form-item {
    flex: 1;
    /* margin-bottom: 10px; */

}

.form-item {
    margin-bottom: 3px;
}

.form-item label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}


input::placeholder {
  font-size: 11px; /* Change to your desired size */
}

.input-wrapper {
    position: relative;
    width: 100%;

}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-wrapper input {
    width: 100%;
    padding: 5px 15px 5px 45px;
    /* padding: 12px ; */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #ff8a00;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.password-strength {
    margin-top: 10px;
}

.strength-meter {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.strength-segment {
    height: 4px;
    flex: 1;
    background-color: #ddd;
    border-radius: 2px;
}

.strength-segment.weak {
    background-color: #ff4d4d;
}

.strength-segment.medium {
    background-color: #ffaa00;
}

.strength-segment.strong {
    background-color: #00cc44;
}

.strength-segment.very-strong {
    background-color: #00aa44;
}

.strength-text {
    font-size: 12px;
    color: #666;
}

.register-button {
    width: 100%;
    padding: 5px 12px;
    background-color: #ff8a00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
}

.register-button:hover {
    background-color: #e67a00;
}

.register-separator {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.register-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

.register-separator span {
    position: relative;
    background-color: white;
    padding: 0 15px;
    font-size: 14px;
    color: #666;
}

/* .social-register {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
} */

/* .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
} */

/* .social-button:hover {
    background-color: #f5f5f5;
}

.social-button img {
    width: 20px;
    height: 20px;
}

.social-button span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
} */

.login-link {
    text-align: center;
    margin-bottom: 5px;
}

.login-link p {
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #ff8a00;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Benefits section */
.benefits-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.benefits-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.benefits-list li i {
    color: #ff8a00;
    margin-right: 10px;
    margin-top: 3px;
}

.benefits-list li span {
    font-size: 14px;
    color: #555;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 14px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
    font-style: normal;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .register-card {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .social-register {
        grid-template-columns: 1fr;
    }
}