/* Container */
.mobile-container {
    width: 95%;
    max-width: 400px; /* Explicit width to match login/signup */
    margin: 10px auto 10px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* Header */
.auth-header {
    text-align: center;
    margin-bottom: 24px;
    margin-top: 20px;
}

.auth-header h1 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #24292f;
}

/* Buttons */
.login-button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
}

.login-button:hover, .btn-default:hover {
    background-color: #f7f8f8;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.login-button:disabled {
    cursor: default;
    background-color: #f5f5f5;
    border-color: #dadce0;
    color: #999;
}

.btn-primary {
    color: #ffffff;
    background-color: #1a73e8; /* Google Blue match */
    border: none;
}

.btn-primary:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

/* Icons */
.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Forms */
.login-form-group, .form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #5f6368;
    font-size: 14px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: #24292f;
    outline: none;
    transition: .2s cubic-bezier(0.3, 0, 0.5, 1);
}

input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26,115,232,0.2);
}



/* Messages */
.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center; /* Generally center, but signup had left */
    font-size: 14px;
}

.message.error, .alert-danger {
    background-color: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

.message.success, .alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.message.info, .alert-info {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

/* Links */
.already-have-account {
    text-align: center;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #dadce0; /* consistent border color */
    border-radius: 8px; /* consistent radius */
    font-size: 14px;
    max-width: 400px;
    margin: 16px auto;
    background-color: white;
}

a {
    color: #1a73e8;
    text-decoration: none;
}


/* Email Management */
.email_list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.email_list li {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unverified {
    color: #d93025;
}

.verified {
    color: #188038;
}

.primary {
    font-weight: bold;
}

.buttonHolder {
    margin-top: 10px;
    text-align: right;
}



