
.gradient-section {
    background: linear-gradient(135deg, #161c25, #33087a);
}
.info-card {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}

.lead {
    color: #cccccc;
}
body {
    background-color: #13132c;
    color: white;
}

.custom-floating-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-input {
    width: 100%;
    padding: 1rem 2.5rem 0.5rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #6370ff;
    border-radius: 0.5rem;
    background-color: transparent;
    color: #fff;
    resize: none; /* Optional for textarea */
}

.custom-input:focus {
    outline: none;
    border-color: #9d8eff;
}

.custom-label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    background-color: #121422;
    padding: 0 0.25rem;
    color: #aaa;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease all;
}

.custom-input:focus + .custom-label,
.custom-input:not(:placeholder-shown) + .custom-label {
    top: 0;
    left: 0.5rem;
    font-size: 0.75rem;
    color: #9d8eff;
    transform: translateY(-50%);
}
