/* CloudChat - Discord-Style Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Discord Color Palette */
    --bg-server-bar: #202225;
    --bg-secondary: #2f3136;
    --bg-primary: #36393f;
    --bg-secondary-alt: #32353b;
    --bg-tertiary: #202225;
    --bg-modifier: #40444b;
    --bg-modifier-hover: #4e5058;
    --bg-modifier-active: #5865f2;
    
    --text-normal: #dcddde;
    --text-muted: #96989d;
    --text-link: #00aff4;
    --interactive-normal: #b9bbbe;
    --interactive-hover: #dcddde;
    --interactive-active: #fff;
    
    --brand: #5865f2;
    --brand-hover: #4752c4;
    --green: #3ba55d;
    --yellow: #faa81a;
    --red: #ed4245;
    
    --header-height: 48px;
    --server-width: 72px;
    --sidebar-width: 240px;
}

body {
    font-family: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-normal);
    min-height: 100vh;
    overflow: hidden;
}

/* ==================== SIGN-IN PAGE ==================== */

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.sign-in-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 32px;
    width: 100%;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-normal);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    color: var(--text-normal);
    font-size: 16px;
    transition: border-color 0.15s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.toggle-password:hover {
    color: var(--interactive-hover);
}

.btn-primary {
    width: 100%;
    padding: 12px 16px;
    background: var(--brand);
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.17s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--brand-hover);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
}

.spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-message {
    margin-top: 12px;
    padding: 10px;
    background: rgba(237, 66, 69, 0.1);
    border: 1px solid var(--red);
    border-radius: 3px;
    color: var(--red);
    font-size: 14px;
}

.hidden {
    display: none !important;
}

/* ==================== DASHBOARD LAYOUT ==================== */

.app {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Server Bar (Leftmost Column) */
.server-bar {
    width: var(--server-width);
    background: var(--bg-server-bar);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
    overflow-y: auto;
}

.server-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
}

.server-item:hover {
    border-radius: 16px;
    background: var(--brand);
    color: white;
}

.server-item.active {
    border-radius: 16px;
    background: var(--brand);
    color: white;
}

.server-item.active::before {
    content: '';
    position: absolute;
    left: -16px;
    width: 8px;
    height: 40px;
    background: white;
    border-radius: 0 4px 4px 0;
}

.server-divider {
    width: 32px;
    height: 2px;
    background: var(--bg-modifier);
    border-radius: 1px;
    margin: 4px 0;
}

/* Channels Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.sidebar-header {
    height: var(--header-height);
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 rgba(4, 4, 5, 0.2), 0 1.5px 0 rgba(6, 6, 7, 0.05), 0 2px 0 rgba(4, 4, 5, 0.05);
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.sidebar-header:hover {
    background: var(--bg-modifier);
}

.sidebar-header h1 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-normal);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px 4px 16px;
    margin-top: 8px;
}

.section-header span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.section-header button {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--interactive-normal);
    cursor: pointer;
    font-size: 18px;
    border-radius: 2px;
}

.section-header button:hover {
    color: var(--interactive-hover);
}

.conversation-list {
    padding: 0 8px;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
    margin: 2px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    color: var(--interactive-normal);
}

.conversation-item:hover {
    background: var(--bg-modifier);
    color: var(--interactive-hover);
}

.conversation-item.active {
    background: var(--bg-modifier-active);
    color: white;
}

.conversation-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-modifier);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-normal);
    flex-shrink: 0;
}

.conversation-item.active .conversation-avatar {
    background: white;
    color: var(--brand);
}

.conversation-info {
    flex: 1;
    min-width: 0;
}

.conversation-name {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-preview {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* User Profile Bar at Bottom */
.sidebar-footer {
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    height: 52px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    flex: 1;
    cursor: pointer;
    height: 100%;
    transition: background-color 0.15s ease;
}

.user-profile:hover {
    background: var(--bg-modifier);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    position: relative;
}

.user-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: var(--green);
    border: 2px solid var(--bg-secondary);
    border-radius: 50%;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-normal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-actions {
    display: flex;
    gap: 0;
}

.icon-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--interactive-normal);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.icon-btn:hover {
    background: var(--bg-modifier);
    color: var(--interactive-hover);
}

.admin-link {
    font-size: 11px;
    color: var(--brand);
    text-decoration: none;
}

.admin-link:hover {
    text-decoration: underline;
}

/* Main Chat Area */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--bg-primary);
}

.chat-header {
    height: var(--header-height);
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 rgba(4, 4, 5, 0.2), 0 1.5px 0 rgba(6, 6, 7, 0.05), 0 2px 0 rgba(4, 4, 5, 0.05);
}

.chat-header-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-normal);
}

.chat-header-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.chat-header-actions {
    display: flex;
    gap: 16px;
}

/* Messages Container */
.messages-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 0;
}

/* Custom Scrollbar */
.messages-container::-webkit-scrollbar,
.sidebar-content::-webkit-scrollbar {
    width: 8px;
}

.messages-container::-webkit-scrollbar-track,
.sidebar-content::-webkit-scrollbar-track {
    background: transparent;
}

.messages-container::-webkit-scrollbar-thumb,
.sidebar-content::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.messages-container::-webkit-scrollbar-thumb:hover,
.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: var(--bg-modifier);
}

/* Message Group */
.message-group {
    padding: 0 16px;
    margin-bottom: 16px;
}

.message {
    display: flex;
    padding: 2px 48px 2px 16px;
    margin: 0 -16px;
    position: relative;
    transition: background-color 0.1s ease;
}

.message:hover {
    background: var(--bg-secondary-alt);
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
    margin-right: 16px;
    margin-top: 2px;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 2px;
}

.message-sender {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-normal);
}

.message-time {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.message-edited {
    font-size: 10px;
    color: var(--text-muted);
}

.message-text {
    font-size: 16px;
    line-height: 1.375;
    color: var(--text-normal);
    word-wrap: break-word;
}

/* Grouped Messages (no avatar, compact) */
.message.grouped {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    margin-top: -2px;
}

.message.grouped .message-avatar {
    visibility: hidden;
}

.message.grouped .message-header {
    display: none;
}

.message.grouped:hover .message-time-compact {
    display: block;
}

.message-time-compact {
    position: absolute;
    left: 4px;
    top: 2px;
    font-size: 11px;
    color: var(--text-muted);
    display: none;
    width: 48px;
    text-align: right;
}

/* Message Actions */
.message-actions {
    position: absolute;
    top: -8px;
    right: 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    display: none;
    padding: 4px;
    gap: 4px;
}

.message:hover .message-actions {
    display: flex;
}

.message-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--interactive-normal);
    cursor: pointer;
    border-radius: 2px;
    font-size: 18px;
    transition: all 0.15s ease;
}

.message-action-btn:hover {
    background: var(--bg-modifier);
    color: var(--interactive-hover);
}

/* Message Reply */
.message-reply {
    background: var(--bg-secondary-alt);
    border-left: 4px solid var(--bg-modifier);
    border-radius: 0 4px 4px 0;
    padding: 4px 8px;
    margin: 4px 0 8px 0;
    font-size: 14px;
}

.message-reply-sender {
    font-weight: 500;
    color: var(--brand);
    margin-right: 4px;
}

/* Reactions */
.message-reactions {
    display: flex;
    gap: 4px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.reaction {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    background: var(--bg-secondary-alt);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.reaction:hover {
    background: var(--bg-modifier);
    border-color: rgba(255, 255, 255, 0.1);
}

.reaction.user-reacted {
    background: rgba(88, 101, 242, 0.15);
    border-color: var(--brand);
}

.reaction-emoji {
    font-size: 16px;
}

.reaction-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Pinned Indicator */
.pinned-indicator {
    font-size: 12px;
    color: var(--brand);
    margin-bottom: 4px;
    font-weight: 500;
}

/* Message Input */
.message-input-container {
    padding: 0 16px 24px 16px;
}

.reply-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg-modifier);
    border-radius: 8px 8px 0 0;
    font-size: 14px;
    color: var(--text-muted);
}

.reply-preview span {
    color: var(--brand);
    font-weight: 500;
}

.reply-preview button {
    background: none;
    border: none;
    color: var(--interactive-normal);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
}

.reply-preview button:hover {
    color: var(--interactive-hover);
}

.message-input-wrapper {
    background: var(--bg-modifier);
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: flex-end;
}

.message-input-wrapper.has-reply {
    border-radius: 0 0 8px 8px;
}

#messageInput {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-normal);
    font-size: 16px;
    padding: 11px 16px;
    resize: none;
    max-height: 200px;
    min-height: 44px;
    font-family: inherit;
    line-height: 1.375;
}

#messageInput:focus {
    outline: none;
}

#messageInput::placeholder {
    color: var(--text-muted);
}

.send-btn {
    background: none;
    border: none;
    color: var(--interactive-normal);
    padding: 11px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
    transition: all 0.15s ease;
}

.send-btn:hover:not(:disabled) {
    color: var(--interactive-hover);
}

.send-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Members Sidebar */
.members-sidebar {
    width: var(--sidebar-width);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.members-sidebar.show {
    display: flex;
}

.members-header {
    padding: 24px 16px 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.members-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 8px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
    margin: 1px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.member-item:hover {
    background: var(--bg-modifier);
}

.member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    position: relative;
}

.member-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    border: 2px solid var(--bg-secondary);
    border-radius: 50%;
}

.member-avatar.online::after {
    background: var(--green);
}

.member-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--interactive-normal);
    flex: 1;
}

.member-role {
    font-size: 12px;
    color: var(--brand);
    background: rgba(88, 101, 242, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
}

.empty-state h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-normal);
}

.empty-state p {
    font-size: 16px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.hidden {
    display: none;
}

.modal {
    background: var(--bg-secondary);
    border-radius: 8px;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.modal h3 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-normal);
}

.modal-content {
    padding: 16px;
}

.modal .form-group {
    margin-bottom: 16px;
}

.modal label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.modal input,
.modal select {
    width: 100%;
    padding: 10px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    color: var(--text-normal);
    font-size: 16px;
}

.modal input:focus,
.modal select:focus {
    outline: none;
    border-color: var(--brand);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.17s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--text-normal);
}

.btn-secondary:hover {
    text-decoration: underline;
}

.btn-primary {
    background: var(--brand);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-hover);
}

.user-search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 8px;
}

.user-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.user-search-item:hover {
    background: var(--bg-modifier);
}

.user-search-item.selected {
    background: rgba(88, 101, 242, 0.3);
}

/* Emoji Picker */
.emoji-picker {
    position: fixed;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.emoji-picker.hidden {
    display: none;
}

.emoji-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.15s ease;
}

.emoji-btn:hover {
    background: var(--bg-modifier);
}

/* Admin Panel */
.admin-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-header h1 {
    font-size: 24px;
    color: var(--text-normal);
}

.admin-header a {
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
}

.admin-header a:hover {
    text-decoration: underline;
}

.admin-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.admin-card-header h2 {
    font-size: 18px;
    color: var(--text-normal);
}

.users-table,
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td,
.admin-table th,
.admin-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.users-table th,
.admin-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
}

.users-table td,
.admin-table td {
    color: var(--text-normal);
    font-size: 14px;
}

.users-table tr:last-child td,
.admin-table tr:last-child td {
    border-bottom: none;
}

.user-email {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}

.badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.badge-admin {
    background: rgba(88, 101, 242, 0.15);
    color: var(--brand);
}

.actions {
    display: flex;
    gap: 8px;
}

.btn-danger {
    background: var(--red);
    color: white;
}

.btn-danger:hover {
    background: #c9353a;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.error-msg {
    color: var(--red);
    font-size: 13px;
    margin-top: 8px;
}
