@import url('https://fonts.googleapis.com/css2?family=Cousine:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    font-family: 'Cousine', monospace;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url('imgs/LS.png');

}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 8%;
    height: 100vh;
}

.left-col {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.left-col h3 {
    line-height: 70px;
    font-size: 2rem;
    opacity: 0.7;
}

.img-con img {
    max-width: 100%;
    height: auto;
}

.soc-imgs {
    display: flex;
}

.soc-imgs li {
    list-style: none;
    margin: 2% 3%;
}

.soc-imgs li img {
    width: 50px;
}

/* Right Form */
.container form {
    width: 520px;
    background-color: var(--backgroundv1-color);
    padding: 13% 8%;
    border-radius: 20px;
}

form h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    text-align: center;
}

.container form input {
    height: 45px;
    width: 100%;
    margin: 3% 0;
    border: none;
    background-color: #e4e4e4;
    border-radius: 8px;
    padding-left: 6%;
    font-size: 1.1rem;
}

.container form input::placeholder {
    font-size: 1rem;
}

input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Checkbox Section */
.cb-sec {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin: 3% 0;
    flex-wrap: wrap;
}

.cb-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.cb-sec .checkbox {
    width: 18px;
    height: 18px;
}

.cb-left a {
    color: brown;
    text-decoration: none;
    opacity: 0.6;
}

.cb-left a:hover {
    text-decoration: underline;
    color: var(--textv1-color);
    transition: 0.3s ease-in-out;
}

/* Signup Button */
.btn-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

form button {
    width: 85%;
    height: 43px;
    border: none;
    font-size: 1.3rem;
    letter-spacing: 2px;
    background-color: var(--backgroundv2-color);
    color: var(--textv2-color);
    border-radius: 15px;
    cursor: pointer;
}

/* Sign Text */
.sign-text {
    text-align: center;
    opacity: 0.7;
    margin-top: 10%;
    font-size: 0.95rem;
}

.sign-text a {
    text-decoration: none;
    color: var(--textv1-color);
}

.sign-text a span:hover {
    text-decoration: underline;
    opacity: 1;
}
