@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* circles */
.circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.012);
}

.circle1 {
    width: 2500px;
    height: 2300px;
    left: -1130px;
    top: calc(100vh - 1150px);
    background: #f6dfb2;
}




.circle2 {
    width: 1800px;
    height: 1800px;
    left: -600px;
    top: 80px;
    background: #efc06b;
}

.circle3 {
    width: 1300px;
    height: 1300px;
    left: -350px;
    top: 260px;
    background: #e8aa43;
}


/* Main title */
.GET-STARTED {
    position: absolute;
    left: 73px;
    top: 60px;
    font-size: 117px;
    font-weight: 700;
    line-height: 0.95;
    color: #000000;
    letter-spacing: 3px;
    z-index: 10;
}


.START-WITH {
    position: absolute;
    left: 75px;
    top: 155px;
    font-size: 34px;
    font-weight: 400;
    color: #111111;
    z-index: 10;
}

.SIGN-IN {
    position: absolute;
    left: 244px;
    top: 155px;
    font-size: 34px;
    font-weight: 800;
    color: #111111;
    z-index: 10;
}

.OR {
    position: absolute;
    left: 377px;
    top: 155px;
    font-size: 34px;
    font-weight: 400;
    color: #111111;
    z-index: 10;
}

.SIGN-UP {
    position: absolute;
    left: 420px;
    top: 155px;
    font-size: 34px;
    font-weight: 800;
    color: #111111;
    z-index: 10;
}


.or-wrapper {
    position: absolute;
    left: 648px;
    top: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.or-line {
    width: 1px;
    height: 280px;
    background: rgba(0, 0, 0, 0.15);
    transform: translateY(-30px);
}

.or_for_line {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.35);
    margin: 6px 0;
    line-height: 1;
    transform: translateY(-30px);
}

.form-container {
    position: absolute;
    left: 73px;
    top: 330px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 10;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 500px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.icon {
    opacity: 0.4;
    mix-blend-mode: multiply;
    width: 30px;
    height: 30px;
}

.email-icon,
.password-icon {
    width: 38px;
    height: 38px;
}

.input-group input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    opacity: 0.4;
}

.input-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 25px;
}

.show-pw {
    opacity: 0.4;
    background: none;
    border: none;
    cursor: pointer;
}

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


input {
    font-family: 'Poppins', sans-serif;
}


input::placeholder {
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
}



/* Signup*/
.No-Account {
    position: absolute;
    left: 810px;
    top: 380px;
    opacity: 0.5;
    font-size: 37px;
    color: #111111;
    z-index: 10;
}

.sign-up-rounded-button {
    position: absolute;
    border-radius: 100px;
    font-size: 33px;
    font-weight: 780;
    left: 890px;
    top: 450px;
    background-color: #CF512A;
    color: white;
    width: 270px;
    height: 46px;
    border: none;
    cursor: pointer;
}


.forgot-password {
    position: absolute;
    left: 400px;
    top: 500px;
    font-size: 20px;
    color: #111111;
    text-decoration: none
}

.sign-in-rounded-button {
    position: absolute;
    border-radius: 100px;
    font-size: 33px;
    font-weight: 780;
    left: 180px;
    top: 568px;
    background-color: white;
    color: #CF512A;
    width: 270px;
    height: 46px;
    cursor: pointer;
    border: none;

}