*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f4f7fe;
    font-family: Arial, Helvetica, sans-serif;
}

a{
    text-decoration: none;
    color: black;
}

header, .container{
    padding: 30px;
    /* max-width: 1000px; */
    margin: 0 auto;
}

.logo{
    border-radius: 30px;
    background-color: #e4edfd;
    display: inline-block;
    padding: 6px 13px;
}

.logo a{
    color: #4273da;
}

.logo svg{
    vertical-align: middle;
}

ul.right{
    float: right;
    font-size: 0.9em;
}

ul.right li{
    display: inline-block;
    margin: 10px 0 10px 30px;
}

.module{
    border-radius: 30px;
    background-color: #e4edfd;
    padding: 50px;
}

h1, h2, h3, h4, h5, h6{
    font-weight: normal;
}

.container{
    padding: 0 30px;
}

.left-section{
    width: 70%;
    margin-right: 3%;
    display: inline-block;
    vertical-align: top;
}

.right-section{
    width: 27%;
    display: inline-block;
    vertical-align: top;
    float: right;
}

.right-section .module{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mod{
    border-radius: 30px;
    padding: 20px;
    border: 1px solid white;
}

img{
    max-width: 100%;
}

.center{
    text-align: center;
}

.sigma-logo-text{
    vertical-align: middle;
    margin-left: 5px;
    font-size: 0.9em;
}


footer {
    margin: 30px 0;
    border-radius: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s;
    color: #858585;
}

.footer-section ul li a:hover {
    color: #4273da;
}

.footer-section p {
    font-size: 14px;
    margin-top: 10px;
}

.footer-section .social-icons a {
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-section .social-icons a:hover {
    color: #4273da;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    font-size: 12px;
}

.login-module {
    background-color: #e4edfd;
    border-radius: 30px;
    padding: 40px;
    max-width: 400px;
    margin: 150px auto;
}

.login-module h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a2a44;
}

.form-group {
    /* margin-bottom: 20px; */
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #1a2a44;
    margin-bottom: 5px;
}

[data-sigma-selected]{
    outline: 2px solid orange;
}

.form-group textarea{
    width: 100%;
    resize: none;
    border-radius: 7px;
    border: 0;
    margin: 10px 0;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dbeafe;
    border-radius: 50px;
    font-size: 16px;
    box-sizing: border-box;
}

.btn {
    background: #4273da;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn:hover {
    background: #2563eb;
}

.links {
    margin-top: 15px;
}

.links a {
    display: block;
    margin: 10px 0;
    color: #4273da;
    text-decoration: none;
    font-size: 14px;
}

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

.text-center {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.text-muted a {
    color: #4273da;
    margin-left: 5px;
}


.text-4xl {
    font-size: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.list-disc {
    list-style-type: disc;
}

.pl-6 {
    padding-left: 1.5rem;
}

/* Viewport */

.xy-canvas canvas{
    position: absolute;
    top: 0;
    left: 0;
}

.xy-canvas canvas.bg{
    opacity: .1;
    transition: .3s all ease-in-out;
}

.floating-object{
    padding: 10px;
    border-radius: 15px;
    font-size: 12px;
}

button.create-item {
    background: orange;
    padding: 10px 20px;
    border: 0;
    border-radius: 6px;
}
