body {
    font-family: Arial, sans-serif;
}

a:hover {
    color: unset;
}

.container {
    height: 100vh;
    padding: 20px;
}

.logo-head {
    width: 250px;
}

.logo-head-fav {
    width: 60px;
}

.head-line {
    font-size: 15px;
}

.head-line.lead {
    font-size: 35px;
    font-weight: bold;
}

.image-section {
    flex: 1;
    max-width: 550px;
    color: white;
    padding: 20px;
    min-height: 750px;
    position: relative;
    border-radius: 20px;
}

.form-section {
    flex: 1;
    max-width: 400px;
}

.signup-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    gap: 20px;
}


.ribbons {
    position: absolute;
    bottom: 40px;
    left: 0;
}

.ribbon {
    background: #D5086D;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ribbon:nth-child(2) {
    background: #262161;
}

.ribbon:nth-child(3) {
    background: #262161;
}

.form-section h1 {
    font-weight: bold;
    font-size: 28px;
    color: #ff497c;
    text-align: center;
}

input[type=email], input[type=password], input[type=text] {
    line-height: 2;
}

input[type=email]::placeholder, input[type=password]::placeholder, input[type=text]::placeholder {
    color: #BDC4CD;
}

.google-btn {
    background-color: white;
    color: #3E454A;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.google-btn:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
}

.google-btn img {
    width: 20px;
    margin-right: 10px;
}

.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.or-divider span {
    font-size: 13px;
    color: #555;
    margin: 0 10px;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.toggle {
    display: flex;
    background-color: #f5a9c1; /* Light pink background */
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
}

.toggle-option {
    flex: 1;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.toggle-option.active {
    background-color: #c40054; /* Active state color */
    color: #fff;
}

.toggle-option:not(.active):hover {
    background-color: #d97b9f; /* Slightly darker pink for hover */
    color: #fff;
}


.btn-pink {
    background: #D5086D;
    color: white;
    border: none;
    border-radius: 33px;
    height: 56px;
}

.btn-pink:hover {
    background: #8d0548;
    color: #fff;
}

p.t-and-c {
    color: #96A0AD;
    font-size: 14px;
    font-weight: lighter;
}

.link {
    color: #3E454A;
    text-decoration: none;
}

.login-link-text {
    color: #000000;
}

.link-pink {
    color: #D5086D;
    text-decoration: none;
}

.link-pink:hover {
    color: #7e0642;
    text-decoration: none;
}


.verification-code {
    gap: 4px;
    margin: 20px 0;
}

.code-input {
    width: 49px;
    height: 56px;
    font-size: 1.5rem;
    border: 1px solid #BDC4CD;
    background: #F9F9F9;
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.code-input:focus {
    outline: none;
    border-color: #007bff;
}