@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;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

button, input {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    position: relative;
    min-height: 100vh;
    z-index: 10;
    display: block;
}

.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;
}

.left-panel {
    position: absolute;
    left: 73px;
    top: 60px;
    width: 500px;
}

.forgot-password-title {
    font-size: 112px;
    font-weight: 800;
    line-height: 0.95;
    color: #000000;
    letter-spacing: -1px;
}

.personal-info {
    margin-top: 16px;
    font-size: 34px;
    font-weight: 400;
    color: #111111;
}

.form-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    border-bottom: 2px solid rgba(0, 0, 0, 0.22);
    padding-bottom: 8px;
}

/* Custom CSS Inline vector outline styling matching mockup image */
.custom-email-icon {
    width: 32px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.4);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>") no-repeat center center;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>") no-repeat center center;
}

.input-group input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(0, 0, 0, 0.75);
    font-size: 25px;
}

.input-group input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.reset-rounded-button {
    align-self: flex-start;
    width: 270px;
    height: 52px;
    border: none;
    border-radius: 100px;
    font-size: 30px;
    font-weight: 800;
    line-height: 52px;
    text-align: center;
    background-color: #cf512a;
    color: white;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.reset-message {
    min-height: 24px;
    margin-top: 10px;
    color: #cf512a;
    font-size: 18px;
    font-weight: 700;
}

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

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

.or-for-line {
    margin: 12px 0;
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.right-panel {
    position: absolute;
    left: 810px;
    top: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.have-account {
    opacity: 0.4;
    font-size: 30px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
}

.sign-in-rounded-button {
    width: 270px;
    height: 52px;
    border: none;
    border-radius: 100px;
    font-size: 30px;
    font-weight: 800;
    line-height: 52px;
    text-align: center;
    background-color: white;
    color: #cf512a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

@media (max-width: 1200px) {
    main {
        padding: 60px 40px;
    }
    .left-panel, .right-panel, .or-wrapper {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-top: 40px;
    }
    .or-wrapper {
        flex-direction: row;
        margin: 40px 0;
    }
    .or-line {
        width: 100%;
        height: 1px;
    }
    .or-for-line {
        margin: 0 20px;
    }
}