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

.beyard-wrapper {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    background: linear-gradient(252deg, #DB00FF 0%, #4200FF 100%);
}

.beyard-container {
    width: 100%;
    max-width: 950px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.beyard-banner {
    position: relative;
    width: 45%;
}

.beyard-banner img {
    width: 390px;
    height: 100%;
    object-fit: cover;
}

.beyard-overlay {
    inset: 0;
    padding: 20px;
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
}

.beyard-overlay blockquote {
    font-size: 30px;
    font-weight: 700;
    width: 100%;
    max-width: 268px;
    font-style: italic;
    text-align: center;
}

.beyard-overlay label {
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    max-width: 268px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    align-self: flex-end;
    gap: 8px;
}

.beyard-overlay label::before {
    content: "";
    width: 16px;
    height: 2px;
    background-color: #fff;
}

.beyard-banner img {
    width: 100%;
    height: 100%;
}

.beyard-content {
    width: 55%;
    flex: auto;
    padding: 20px;
    background-color: #ffffff;
}

.beyard-form {
    width: 100%;
    max-width: 390px;
    margin-top: 60px;
    margin-bottom: 40px;
    margin-inline: auto;
}

.beyard-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 32px;
}

.beyard-logos img {
    height: 37px;
}

.beyard-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.beyard-field {
    margin-bottom: 16px;
    position: relative;
}

.beyard-field input {
    width: 100%;
    height: 50px;
    border-radius: 24px;
    padding-inline: 16px;
    font-size: 16px;
    border: none;
    background-color: #D9D9D9;
    padding-right: 30px; /* Space for the eye button */
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer; 
}
.eye-icon i{
    font-size: 1.5em;
}

.beyard-field {
    margin-bottom: 16px;
}

.beyard-field input {
    width: 100%;
    height: 50px;
    border-radius: 24px;
    padding-inline: 16px;
    font-size: 16px;
    border: none;
    background-color: #D9D9D9;
}

.beyard-field small {
    display: block;
    margin: 6px 16px 0px;
    color: red;
}

.beyard-button {
    width: 100%;
    height: 50px;
    border-radius: 24px;
    padding-inline: 16px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 16px;
    border: none;
    color: #ffffff;
    background-color: #57B846;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
}

.beyard-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.beyard-footer a {
    color: #57B846;
    text-decoration: none;
}

@media (max-width: 640px) {
    .beyard-wrapper {
        background: initial;
    }

    .beyard-container {
        display: inherit;
        border-radius: 0px;
    }

    .beyard-banner {
        display: none;
    }
}