.forms{
    width: 45%;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
}

.container{
    padding: 16px;
    background-color: #1f1f1f;
    border-radius: 10px;
}

input[type=text], input[type=password], select{
    width: 100%;
    padding: 15px;
    display: inline-block;
    background-color: #5f5f5f;
    border: none;
    border-radius: 7px;
    margin: 5px 0 22px 0;
    color: #f4f4f4;
    box-sizing: border-box;
}

.submitButton{
    width: 100%;
    padding: 15px;
    background-color: #35e67b;
    color: #1f1f1f;
    border: none;
    border-radius: 3px;
    margin: 5px 0 22px 0;
}

.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    width: 100%;
}

.cardNew {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(10px);
}

.cardNew:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.bannerNew {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.bannerNew img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* padding: 10px;    */
}

.card-content {
    padding: 20px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 10px;
}

.titleNew {
    font-size: 1.3rem;
    font-weight: 800;
    color: #35e67b;
    margin-bottom: 12px;
}

.positionBottom{
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
}