*{
    margin:0;
}
/* global design */
:root{
    --primary:#FF6A3E;
    --secondary:linear-gradient(99deg, #FF6A3E 15.5%, #FFA45E 99.07%);
    --tertiary:#fff;
    --universe:#ccc;
    --text:#555;
    --light: #fafbf9;
}
.main-button{
    border: none;
    outline: none;
    border-radius: 5px;
    background: var(--secondary);
    color: var(--tertiary);
    font-weight: bold;
    padding: 10px 20px;
}

.text-main{
      color: var(--primary);
}
/* end of global design */
body{
    font-family: sans-serif;
}
/* hero section */
.all-hero{
    display: flex;
    align-items: center;
}
.hero-left{
    background-color: var(--light);
    height: 100vh;
    width: 42%;
    padding:25px;
    overflow-y: scroll;
}
.hero-left::-webkit-scrollbar {
    width: 10px; /* Adjust scrollbar width */
}

.hero-left::-webkit-scrollbar-track {
    background: var(--secondary); /* Background color of scrollbar track */
}

.hero-left::-webkit-scrollbar-thumb {
    background: gray; /* Color of the draggable scrollbar handle */
    border-radius: 5px;
}

.hero-left::-webkit-scrollbar-thumb:hover {
    background: var(--secondary); /* Color on hover */
}

.hero-right{
    width: 58%;
}
.hero-right img{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-self: center;
}
 .hero-text{
    color:var(--text) ;
}
.hero-text h4{
    font-weight: bolder;
}
.hero-text p{
    font-size: 14px;
}
.google{
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: var(--tertiary);
    color: var(--text);
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 0 5px var(--universe);
}
.google-login{
    text-decoration: none;
}
.google h6{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.line{
    width: 70%;
    height: 1px;
    background-color: var(--text);
}
.or{
    display: flex;
    align-items:center;
    color: var(--text);
    gap: 50px;
} 
.form-box{
    width: 100%;
    border: 1px solid #ccc;
    padding: 12px;
    display: flex;
    align-items: center;
}
.form-box i{
    color: gray;
}
.form-box input{
      width: 100%;
      border: none;
      background-color: transparent;
}
.form-box input:focus{
    outline: none;
}
.form-box:hover{
    width: 100%;
    border: 1px solid var(--primary);
    padding: 12px;
    display: flex;
    align-items: center;
}

label{
    color: var(--text);
    font-size: 15px;
}

input::placeholder{
    font-size: 14px;
}

.eml:hover{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: var(--tertiary);
    /* width:; */
    border-radius: 5px;
    border: 2px solid var(--universe);
} 

.forget a{
    text-decoration:none;
    font-size: 15px; 
    font-weight: bold; 
    transition: .30s ease; 
}
.forget a:hover{
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.acc p{
    color: var(--text);
    font-size: 14px
}
.acc a {
    text-decoration: none;
    color:var(--text);
    font-size: 14px;
}
.acc{
    text-align: center;
}
.fa-eye{
    cursor: pointer;
}
/* end of hero section */

/* otp box design */
.otp-box {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.otp-input {
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.otp-input:focus {
    border-color: var(--primary);
}
.terms input{
    accent-color: #FFA45E;
}
.terms a{
    color: var(--primary);
}
/* end of otp box design */

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    100% { transform: rotate(360deg); }
}

.all-main-terms p{
    font-size: 15px;
}
.all-main-terms li{
    font-size: 14px;
}