/* public/css/email-verification.css */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
    padding: 20px;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    width: 100%;
    border: 1px solid #E5E7EB;
}

.icon {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1;
    color: #1CB040;
}

h1 {
    color: #1F2937;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.message {
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.close-instruction {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 8px;
}

.app-button {
    display: inline-block;
    background-color: #1CB040;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.app-button:hover {
    background-color: #179337;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 176, 64, 0.4);
}

.app-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.countdown {
    font-size: 14px;
    color: #9CA3AF;
    margin-top: 16px;
}

.countdown-seconds {
    font-weight: 700;
    color: #1CB040;
}
