/* styles.css - Página Coming Soon */

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    font-family: Arial, Tahoma, Helvetica, sans-serif;
    margin: 0;
    text-align: center;
}

/* Logo como <img>, solo controla tamaño y margen */
.logo {
    margin-bottom: 1.5rem;
    width: 200px;
    height: auto;
}

.notify-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.notify-btn:hover {
    background-color: #218838;
}
