/* Landing and Signup Page Styles */

/* Import common styles */
@import url('0_css-collector.css');

/* Landing Container */
.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Landing Form */
.landing-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 300px;
}

.landing-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.landing-form .button {
    width: 100%;
    margin-top: 20px;
}
