html {
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-image: url("../../../../images/bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-box {
    background: rgba(255, 255, 255, 0.90);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.welcome-box img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.welcome-box h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #003501;
}

.welcome-box p {
    font-size: 16px;
    color: #031109;
    margin-bottom: 20px;
}

.a-button {
    display: inline-block;
    background: #0F6CBD;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 700;
}

.a-button:hover {
    background: #0056b3;
}
