* {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}
body {
    background-color: #c9cfd4;
}
.register-con {
    background-color: #fff;
    border-radius: 15px;
}

.reg-logo img {
    width: 150px !important;
}

.img-con {
    background-color: bisque;
    border-radius: 0px 15px 15px 0px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.img-con::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
}

.img-text {
    position: absolute;
    top: 0;
    width: 100%;
    margin: auto;
    z-index: 2;
}

.img-con img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.reg-home a {
    text-decoration: none;
    color: #fff;
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 20px;
    background-color: #ffffff3b;
}

.create-acc-header {
    margin-top: 20px;
}

.create-acc-header h2 {
    color: #000;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.create-acc-form {
    padding: 10px 130px;
}

.create-acc-header p {
    color: #ddd;
    font-size: 13px;
}

.create-acc-form input {
    background: transparent;
    color: #000;
    font-size: 12px !important;
    border: 1px solid #ddd;
    padding: 10px;
}

.create-acc-form input:focus {
    border: 1px solid #ddd;
    color: #000 !important;
    box-shadow: none;
}

label {
    font-size: 11px;
    padding-bottom: 5px;
}

.create-acc-form input::placeholder {
    color: #605774;
}

.create-acc-form button {
    background-color: #000;
    color: #fff;
    font-size: 11px;
}

.create-acc-form button:hover {
    background-color: #000;
    color: #fff;
}

.error-item p {
    font-size: 10px;
    color: red;
}

.reg-success {
    z-index: 999;
    background: linear-gradient(90deg,rgba(235, 245, 238, 1) 0%, rgba(182, 240, 197, 1) 100%);
    color: #32c682;
    border-radius: 10px;
}

.reg-success h5 {
    font-size: 14px;
    margin-top: -3px !important;
    margin-bottom: 2px !important;
}

.reg-success p, .reg-success a{
    font-size: 11px;
}

/* .jfj {
    display: flex;
    align-items: center;
    justify-content: center;
} */

@media (max-width: 768px) {
  .img-con {
    height: 50vh;
}
.create-acc-header h2 {
    font-size: 25px;
    margin-bottom: 8px !important;
}
.create-acc-form {
    padding: 30px 20px;
}
}
