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

/* Body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFFFFF;
    color: #1A1A1A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

/* Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 20px;
}

/* Content */
.content {
    max-width: 600px;
}

/* Logo Image */
.logo-img {
    width: 220px;   /* Increased size */
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

/* Logo Text */
.logo-text {
    font-size: 2.2rem;
    color: #0F5D52;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Coming Soon */
.coming-soon {
    font-size: 2rem;
    color: #16C784;
    margin-bottom: 20px;
}

/* Description */
.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Email Box */
.email-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.email-box input {
    padding: 12px;
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
}

.email-box input:focus {
    border-color: #16C784;
}

/* Button */
.email-box button {
    padding: 12px 18px;
    background-color: #16C784;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.email-box button:hover {
    background-color: #0F5D52;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.credit {
    margin-top: 5px;
    color: #0F5D52;
    font-weight: 500;
}
