* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Century Gothic', Arial, sans-serif;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url('https://portal.talcott.com/images/petal.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: -300px -800px;
}

header {
    width: 100%;
    height: 80px;
    background: white;
    border-bottom: 1px solid #ADC0D2;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 54px;
    width: auto;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px; /* Reduced from 40px to 20px */
}

.content {
    width: 100%;
    max-width: 460px;
    padding: 24px;
    text-align: left;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-indicator {
    color: #6D7985;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

h1 {
    color: #0C1F33;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 8px;
}

p {
    color: #0C1F33;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    color: #0C1F33;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 8px;
}

.form-input {
    width: 100%;
    height: 48px;
    border: 1px solid #D0D8DE;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 16px;
    margin-bottom: 8px;
}

.form-input.invalid {
    border-color: #FF3B30;
}

.invalid{
    border-color: #FF3B30;
}

.validation-message {
    font-size: 14px;
    color: #0C1F33;
}

.validation-message.error-text {
    color: #FF3B30;
    display: flex;
    align-items: center;
    gap: 5px;
}

.validation-message.error-text::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: url('../images/warn.svg') no-repeat center center;
    position: relative;
}

.validation-requirements {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0C1F33;
}

/* Custom check icons - you can replace these with your own custom icons */
.check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.check-icon.valid {
    background: url('../images/check.svg') no-repeat center center;
}

.check-icon.valid::after {
    background: url('../images/check.svg') no-repeat center center;
}

.check-icon.invalid {
  
    background: url('../images/error.svg') no-repeat center center;
}

.create-account-btn {
    width: 100%;
    height: 56px;
    background: #153C5D;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 24px;
}

.create-account-btn:hover {
    background: #0d2338;
}

.go-back {
    text-align: center;
    margin-bottom: 24px;
    text-decoration: underline;
}

.go-back a {
    color: #153C5D;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}



/* footer {
    width: 100%;
    height: 60px;
    background: #9DC1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0C1F33;
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
} */
footer {
    width: 100%;
    height: 80px;
    background: #9DC1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0C1F33;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: auto;
}

.error-message {
    color: #FF3B30;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    background-color: rgba(255, 59, 48, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FF3B30;
    display: none;
}

/* .error {
    color: #FF3B30 !important;
    font-size: 14px !important;
    margin: 10px 0 !important;
    padding: 10px !important; 
    background-color: rgba(255, 59, 48, 0.1) !important;
    border-radius: 8px !important;
    border-left: 4px solid #FF3B30 !important;
} */