* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(0, 0, 33);
    color: white;
    font-family: 'Poppins', sans-serif;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    background-color: rgb(18, 18, 60);

}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 23px;
    cursor: pointer;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    color: rgb(153, 153, 226);
    font-size: 1.05rem;
}

.left {
    font-size: 1.25rem;
}

.firstSection {
    display: flex;
    justify-content: space-around;
    margin: 140px 0;
}
.btn a{
    text-decoration: none;
    color: white;
}
.firstSection>div {
    width: 30%;
}

.leftSection {
    font-size: 2rem;
    margin: 30px 0;
}
.leftSection .buttons{
    padding: 50px 0;
}

.leftSection .btn {
    padding: 12px;
    background-color: #1e2167;
    color: white;
    border: 2px solid white;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
}

.rightSection img {
    width: 80%;
    border-radius: 40%;
}

.purple {
    color: rgb(170, 107, 228);
}

#element {
    color: rgb(170, 107, 228);
}

.secondSection {
    max-width: 80vw;
    margin: auto;
    height: 80vh;
}

.secondSection h1 {
    font-size: 1.9rem;
}

main hr {
    border: 0;
    background-color: #9c97f1;
    height: 1.2px;
    margin: 40px 84px;
}

.grey-text {
    color: gray;
    font-size: 0.9rem;
}

.secondSection .box {
    background-color: white;
    width: 80vw;
    height: 2px;
    margin: 56px 0;
    display: flex;
}

.secondSection .vertical {
    height: 93px;
    width: 1px;
    background-color: white;
    margin: 0 170px;
}

.vertical-title {
    position: relative;
    top: 93px;
    width: 150px;
}

.vertical-desc {
    position: relative;
    top: 100px;
    color: rgb(168, 167, 167);
    width: 150px;
    font-size: 11px;
}
.form {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #1e2167, rgb(170, 107, 228),#9c97f1 );
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

input,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
}

input[type="submit"] {
    background-color: purple;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #5b61b6;
}

footer {
    background-color: #0e0e1a;
}

.footer {
    display: flex;
    justify-content: space-evenly;
    padding: 23px 122px;
}
.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.footer>div {
    width: 230px;
}
.footer-second ul a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

footer ul li {
    list-style: none;
}

footer .footer-rights {
    text-align: center;
    color: gray;
    padding: 12px 0px;
}