/*CSS file for the landing page */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(90deg, hsla(205, 78%, 79%, 1) 10%, hsla(104, 100%, 84%, 1) 90%);
    font-family: 'Roboto', sans-serif;
}

.container, .containerslogan {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2%;
    text-align: center;
}

.containerslogan {
    font-style: italic;
    font-weight: bold;
}

.back a {
    display: block;
    text-align: center;
    margin: 1rem;
    font-family: inherit;
    font-weight: 700;
}

button {
    background: #9FD0F3;
    border: none;
    border-radius: 30px;
    padding: 8px 80px;
    cursor: pointer;
    color: #1a5a77;
    font-weight: bold;
}

.button-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 0;
}

.button-container button {
    margin: 5px;
}

/* Styling forms and about us section */
.register-form, .login-form, .aboutus {
    position: relative;
    z-index: 1;
    margin-top: 5%;
    border: 1px solid #ccc;
    padding: 2%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    font-size: 1.5rem;
}

.aboutus {
    bottom: 100;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    padding: 3%;
    text-align: justify;
    z-index: 1;
}

/*Form Group is used for the inputs in signup */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Styling Submit Buttons */
input[type="submit"] {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}

.agree {
    margin-top: 2rem;
    text-align: left;
}

.agree p {
    font-size: 14px;
}

.agree a {
    color: #3498db;
}

.agree a:hover {
    text-decoration: underline;
}
