div.banner {
    width: fit-content; 
    display: flex; 
    align-items: center; 
}

div.banner img.sun-logo {
    width: 110px; 
    height: auto;
}

div.banner img.company-logo {
    width: auto;
    height: 65px;
}

body {
    display: flex;
    flex-direction: column;
}

/* Header */

div.header-sign-up {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
    height: fit-content;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25)
}

div.header-container {
    display: flex;
    flex-direction:row;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
    margin-right: 100px;
}

div.header-sign-up .signin-link {
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    color: #0260D2;
}

div.header-sign-up .signin-link:hover {
    color: #52a0ff;
}

div.header-sign-up .signin-link:active {
    color: #0260D2;
}

div.header-sign-up .signin-link:visited {
    text-decoration: none;
}

/* Body */
div.body-content {
    display: flex;
}

/* Role Selection Page */
div#role-selection-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

div.body-content p.welcome-msg {
    margin-top: 70px;
    font-size: 40px;
    font-weight: 900;
    color: #0260D2;
}

div.body-content p.info {
    margin-top: 25px;
    font-size: 24px;
    font-weight: 400;
    color: #303030;
} 

.card-container {
    margin-top: 20px;
    display: flex;
}

.card-select {
    user-select: none;
    padding: 10px 10px;
    color: #303030;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    height: 350px;
    width: 350px;
    border: 1px solid #BCBCBC;
    border-radius: 20px;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-select:hover {
    border-color: transparent;
    background-color: #f1f1f1;
}

.card-select img {
    -webkit-user-drag: none;
}

.card-select img[alt="img-branch_manager"],
.card-select img[alt="img-franchisee"] {
    height: 195px;
    width: 130px;
}

.card-select img[alt="img-admin"] {
    height: 168px;
    width: 168px;
}

.card-select p {
    text-align: center;
    font-size: 24px;
}

#role-selection-page button {
    margin-top: 25px;
    height: 71px;
    width: 401px;
    background-color: #348BF6;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    border: none;
    border-radius: 20px;
    transition: background-color 0.125s ease;
}

#role-selection-page button:hover {
    background-color: #4f9eff;
}

/* Create Account Form Page */
div#create-account-page {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

p.create-label {
    margin-top: 40px;
    font-size: 40px;
    font-weight: 900;
    color: #0260D2;
}

div.form-account-create {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 600px;
}

div.form-account-create input {
    height: 41px;
    width: 100%;
    border: 1px solid #797979;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    color: #303030;
}

div.form-account-create input:active {
    border-color: #303030;
}

div.form-row {
    display: flex;
}

div.form-group {
    margin: 10px 20px;
    width: 100%;
}

div.form-account-create p {
    margin-left: 15px;
    font-size: 17px;
    font-weight: 400;
    color: #B6B6B6;
}

p.toc-label {
    color: #B6B6B6;
    font-weight: 400;
    font-size: 15px;
}

p.toc-label a {
    text-decoration: none;
    color: #0260D2;
}

p.toc-label a:hover {
    color: #52a0ff;
}

p.toc-label ak:active {
    color: #0260D2;
}

p.toc-label a:visited {
    text-decoration: none;
}

#create-account-page button {
    margin-top: 25px;
    height: 51px;
    width: 401px;
    background-color: #348BF6;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    border: none;
    border-radius: 20px;
    transition: background-color 0.125s ease;
}

#create-account-page button:hover {
    background-color: #4f9eff;
}

#create-account-page button.disabled {
    background-color: #83bbff;
    opacity: 0.6;
}

/* Verify Account Page */
div#verify-account-page {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

p.verify-label {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: 900;
    color: #0260D2;
}

p.enter-label {
    font-size: 24px;
    font-weight: 400;
    color: #797979;
}

p.enter-label a {
    color: #323232;
}

#verify-account-page input {
    margin-top: 25px;
}

p.expiry-label {
    margin-top: 25px;
    color: #B6B6B6;
    font-weight: 400;
    font-size: 20px;
}

p.expiry-label a {
    text-decoration: none;
    color: #323232;
}

#verify-account-page button {
    margin-top: 25px;
    height: 51px;
    width: 401px;
    background-color: #348BF6;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    border: none;
    border-radius: 20px;
    transition: background-color 0.125s ease;
}

#verify-account-page button:hover {
    background-color: #4f9eff;
}

p.resend-label {
    margin-top: 25px;
    color: #B6B6B6;
    font-weight: 400;
    font-size: 20px;
}

p.resend-label a {
    text-decoration: none;
    font-weight: bold;
    text-decoration: underline;
    color: #1E419C;
}

p.resend-label a:hover {
    color: #52a0ff;
}

p.resend-label ak:active {
    color: #0260D2;
}

p.resend-label a:visited {
    text-decoration: none;
}

/* Request Received Page */
div#request-received-page {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

p.received-label {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 40px;
    font-weight: 900;
    color: #0260D2;
}

p.received-label-low {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 900;
    color: #0260D2;
}

#request-received-page .container {
    margin-top: 25px;
    display: flex;
    width: 950px;
    flex-direction: column;
    align-items: center;
}

p.message {
    font-size: 24px;
    font-weight: 800;
    color: #303030;
}

p.message-low {
    font-size: 24px;
    font-weight: 400;
}

#request-received-page button {
    margin-top: 40px;
    height: 51px;
    width: 401px;
    background-color: #348BF6;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    border: none;
    border-radius: 20px;
    transition: background-color 0.125s ease;
}

#request-received-page button:hover {
    background-color: #4f9eff;
}

/* otp layout */
.otp-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}
.otp-container input {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.otp-container input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}
