body {
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding-left: 100px; /* Moves the content to the left */
}

.header {
    position: absolute;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-left: 100px;
}

.box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    width: 350px;
    text-align: center;
    color: #333;
    backdrop-filter: blur(10px);
}

.box h2 {
    color: #2c8f4b;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 24px;
}

input {
    width: 100%;
    padding: 14px;
    margin: 14px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: #f9f9f9;
    color: #333;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #2c8f4b;
    box-shadow: 0px 0px 6px rgba(44, 143, 75, 0.5);
}

.button2 {
    width: 100%;
    height: 50px;
    background: #2c8f4b;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(44, 143, 75, 0.3);
}

.button2:hover {
    background: #23703a;
    transform: translateY(-2px);
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}
