
/* Common styles for cOASIS OAuth System */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    margin-bottom: 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.oasis-logo {
    width: 50px;
    height: 50px;
    background-color: #008080;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin: 0 auto 10px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.form-container {
    background-color: rgba(128, 128, 128, 0.7);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.form-header {
    background-color: #5c6670;
    color: white;
    padding: 15px;
    font-size: 18px;
    text-align: left;
}

.form-content {
    padding: 20px;
    background-color: #94999e;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.btn {
    background-color: #008080;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #006666;
}

.forgot-password {
    display: block;
    text-align: left;
    color: white;
    margin-top: 10px;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.page-title {
    color: #008080;
    font-size: 28px;
    margin-bottom: 15px;
}

.page-description {
    color: #666;
    margin-bottom: 30px;
}

.help-btn {
    background-color: #008080;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
}

.mfa-option {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mfa-option:hover {
    border-color: #008080;
    box-shadow: 0 0 5px rgba(0, 128, 128, 0.3);
}

.mfa-option input[type="radio"] {
    margin-right: 10px;
}

.mfa-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.mfa-description {
    color: #666;
    margin-top: 5px;
}

.footer {
    background-color: #5c6670;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.error {
    color: #ff0033;
    background-color: #ffeeee;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: left;
}

.resend-section {
    margin-top: 15px;
    text-align: left;
}

.resend-button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.resend-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#resend-status {
    margin-top: 10px;
    font-size: 14px;
    color: white;
}

.privacy-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.privacy-button:hover {
    text-decoration: underline;
}
