@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/user/font/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: semibold;
}


body{
    height: 100%;
    margin: 0;
    background-image: url('/assets/user/images/bg-veggie1.png');
    font-family: 'Poppins', sans-serif;
}

main {
    flex: 1;
}

footer {
    background-color: #FFFF;
    text-align: center;
    padding: 10px 0;
}

.green-button {
    background-color: #1BA11B;
    width: auto;
    height: 40px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 5px;
    cursor: pointer;
    font-weight: 600;
}

.green-button:hover {
    background-color: #1BA11B;
}

.login-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.register-container {
    width: 500px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-link {
    color: #1BA11B;
    font-weight: 600;
    text-decoration: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 95vh;
}