﻿
.centered-box {
    display: block;
    margin-top: 11em;
    position: absolute;
    top: auto;
    left: auto;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 750px;
    border-radius: 1em;
    padding: 1.5em 0;
}
  
.card-body {
    padding: 0.5rem !important;
}

.account-container {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 5px 10px;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}
.card-title {
    margin-bottom: .75rem;
    font-size: 1.6em;
}

.account-info {
    display: flex;
    align-items: center;
}

.avatar {
    background: #E8F6F9;
    color: #369FF7;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}
a,  a:hover { 
    text-decoration: none !important;
}
.account-details {
    display: flex;
    flex-direction: column;
}

.email {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.switch-account {
    font-size: 12px;
    color: #0066cc;
    text-decoration: none;
    margin-top: 2px;
}

    .switch-account:hover {
        text-decoration: underline;
    }

.options-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.icon img {
    width: 30px;
    height: 30px;
}

.option-info {
    flex-grow: 1;
    margin-left: 15px;
}

.option-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.option-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.arrow img {
    width: 15px;
    height: 15px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .option {
        flex-direction: column;
        align-items: flex-start;
    }

    .arrow {
        margin-top: 10px;
        align-self: flex-end;
    }

    .icon {
        margin-bottom: 10px;
    }
}

.icon-send-message {
    font-weight: bold; 
    font-size: 1.2em !important;
    padding: 0;
    background: #E8F6F9;
    color: #369FF7;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-bordered-messages {
    border: 1px solid lightgray;
    border-radius: 12px;
    padding: 10px 15px;
}

.text-center {
    font-size: 13px;
}
p {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.sms-code-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.sms-code-input {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
}

    .sms-code-input:focus {
        border-color: #007bff;
    }

.resend-button {
    display: block;
    width: 100%;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

    .resend-button:hover {
        text-decoration: none;
    }
    .resend-button a:hover {
        text-decoration: none;
    }

@media (max-width: 320px) {
    .sms-code-container {
        flex-wrap: wrap;
    }

    .sms-code-input {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}