html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 27px;
}

.header {
    align-self: stretch;
    color: #101828;
    font-size: 24px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.company-logo {
    width: 50px;
    height: 50px;
}

.content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mfa-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.mfa-option {
    width: 431px;
    height: 99px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.mfa-option-background {
    width: 431px;
    height: 99px;
    position: absolute;
    background: white;
    box-shadow: 0px 34px 33px -23px rgba(22, 28, 45, 0.13);
    border-radius: 10px;
    border: 1px #E7E9ED solid;
    transition: border-color 0.3s;
}

.mfa-option:hover .mfa-option-background {
    border-color: #2C3D7B;
}

.mfa-radio:checked + .mfa-option-background {
    border-color: #28a745; /* Green border when selected */
}

.mfa-option-description {
    width: 295px;
    height: 32px;
    position: absolute;
    left: 100px;
    top: 43px;
    color: #989FAD;
    font-size: 11.2px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.mfa-option-icon {
    padding: 12px;
    position: absolute;
    left: 20px;
    top: 19px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    border-radius: 6px;
    overflow: hidden;
    border: 1px #C3CBDB solid;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.icon-background {
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.icon-background div {
    width: 17.92px;
    height: 17.92px;
    position: absolute;
    left: 1.04px;
    top: 1.04px;
    background: #1C274C;
}

.mfa-option-label {
    position: absolute;
    left: 104px;
    top: 19px;
    color: #475467;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.mfa-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.mfa-button {
    align-self: stretch;
    height: 48px;
    padding: 10px 18px;
    background: #2C3D7B;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px #2C3D7B solid;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.mfa-text {
    color: white;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

.mfa-details {
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 34px 33px -23px rgba(22, 28, 45, 0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.mfa-details h2 {
    color: #101828;
    font-size: 20px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}

.mfa-details p {
    color: #475467;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.mfa-details ul {
    list-style-type: none;
    padding: 0;
}

.mfa-details li {
    color: #475467;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.mfa-details li strong {
    font-weight: 500;
}
