/* Login page styling */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px); 
    padding: 20px;
}

.login-form {
    background-color: #f0e6d2;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 2px solid #8f9779;
}

.login-form h2 {
    color: #4b5320;
    margin-bottom: 25px;
    font-size: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2f3e1c;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2b48c;
    border-radius: 5px;
    font-size: 1rem;
    color: #2f3e1c;
    background-color: #fcf8f3;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #7c6f42;
    box-shadow: 0 0 5px rgba(124, 111, 66, 0.5);
}

.login-form div {
    width: 100%;
    padding: 12px;
    background-color: #8f9779;
    color: #f0e6d2;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.login-form div:hover {
    background-color: #7c6f42;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Register Text Styling */
.register-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #2f3e1c;
}

.register-text a {
    color: #4b5320;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-text a:hover {
    color: #7c6f42;
    text-decoration: underline;
}

/* Delete account text and confirmation button styling */
.delete-text {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #2f3e1c;
}

.delete-text a {
    color: #b53b3b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.delete-text a:hover {
    color: #7c2727;
    text-decoration: underline;
}

.cancel-delete {
    margin-left: 8px;
    color: #4b5320;
    text-decoration: none;
    font-weight: 600;
}

.cancel-delete:hover {
    color: #7c6f42;
    text-decoration: underline;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
    height: 36px;
    width: auto;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.08s;
}
.google-btn:hover {
    background-color: #f7f7f7;
    transform: translateY(-1px);
}
.google-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

a > .google-btn {
    width: auto;
}