/* Reset and full-page background */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('/assets/image.jpg');
    /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

/* Main container */
.container {
    background: rgba(255, 255, 255, 0.552);
    /* Light transparent background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(29, 16, 16, 0.2);
    max-width: 400px;
    width: 90%;
}

/*logo*/
.logo {
    width: 170px;
    /* Adjust width */
    height: auto;
    /* Keep aspect ratio */
    display: block;
    /* Ensures proper centering */
    margin: 0 auto 10px auto;
    /* Centers image */
}

/* Header */
h1 {
    font-size: 28px;
    color: #008807;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* Folder icon (optional) */
.folder {
    width: 50px;
    height: 50px;
    background-image: url('./assets/');
    /* Change if needed */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 10px auto;
}

/* Subheading */
h2 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

/* Description */
p {
    font-size: 14px;
    color: #323232;
    margin-top: -2px;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

.btn {
    display: block;
    padding: 12px;
    margin: 10px 0;
    text-decoration: none;
    color: #fff;
    background: #219800;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
}

.btn:hover {
    background: #25cb00;
}