* {
    border: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

:root {
    --var-primary-color: #2888E8FF;
}

html {
    font-size: 62.5%;
}

h1,
h2,
h3,
h3 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Times New Roman', Times, serif;
}

p {
    font-size: 1.4rem;
    font-weight: 100;
    color: dimgray;
    letter-spacing: 0.08rem;
}

button,
input[type="submit"] {
    border: 0.1rem solid #fff;
    outline: none;
    padding: 0.6rem 1.2rem;
    font-size: 1.7rem;
    text-transform: capitalize;
    letter-spacing: 0.05rem;
    background-color: transparent;
    color: white;
    cursor: pointer;

}

button:hover {
    background-color: transparent;
    color: #fff;
}

/**registration form**/
body {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(new.jpg);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.form-text p {
    color: azure;
    font-weight: 200;

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.container {
    height: 10vh;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.logo a {
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    font-size: 1.7rem;
    font-weight: 600;
}

li>a {
    color: #fff;
    text-decoration: none;
}

/**home page**/

/**registration page**/
main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.registration,
.login {
    min-height: 20rem;
    min-width: 40vw;
}

.user-container {
    border-radius: 10%;
}

.grid-two--column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.form-text {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url(SHOP2.jpeg);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 3rem, 2 rem;

}

.login .form-text {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url(LOGIN.jpeg);

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.form-text p {
    width: 30ch;
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.form-text button {
    background-color: #ccc;
    color: #000;
}

.form-text button:hover {
    background-color: transparent;
    color: #fff;
}

.registration-form,
.login-form {
    width: 100%;
    min-height: 45vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.registration-form p,
.login-form p {
    margin: 1rem 0 0.7rem 0;
}

.social-icons {
    display: flex;
    gap: 1.4rem;
    margin: 1rem 0 .6rem 0;
}

.fa-brands {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 0.1rem solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

input {
    margin: 0.7rem 0;
    width: 20rem;
    border: none;
    background-color: #e8e8e8;
    padding: 1rem 1.8rem;
    letter-spacing: 0.06rem;
}

input[type="submit"] {
    margin-top: 1rem;
    min-width: 10rem;
    background-color: var(--var-primary-color);
    color: #fff;
}

.registration:not(.login-section--display) {
    display: none;
}

.login-section--display .login {
    display: none;
}

.login-section--display .registration {
    display: block;
}

.foot-panel-4 {

    color: white;
    height: 100px;
    font-size: 1.3rem;
    text-align: center;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {

    padding-top: 5px;
}

.pages:hover {
    text-decoration: underline;
}

.copyright :hover {
    text-decoration: underline;

}

.owner {
    font-size: larger
}

.owner p>a {
    text-decoration: wavy;
    color: white;
}
