.akashic-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.akashic-form .field-container{
    border: 1px solid #808285;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    padding:  0.5rem 1rem 0.5rem 2rem;
    align-items: center;
    position: relative;
}

.akashic-form .field-container:last-of-type{
    border: none;
    padding: 0;
    border-radius: 0;
}

.akashic-form .field-container:last-of-type .label-wrapper{
    display: none;
}

.akashic-form .field-container:last-of-type::before{
    content: unset;
}

.akashic-form .label-wrapper{
    font-family: Helvetica, sans-serif;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
.akashic-form .field-container{
    flex-wrap: wrap;
}
.akashic-form .label-wrapper{
    width: 100%;
}
.akashic-form input[type="text"], .akashic-form input[type="email"], .akashic-form input[type="tel"], .akashic-form select, .akashic-form textarea {
    width: 80%;
}
    
}

.akashic-form .label-wrapper label{
    font-size: 1.15rem;
    color: #808285;
    order: 1;
}

.akashic-form .field-container::before{
    content: "";
    background-image: url('./assets/arrow.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 22px;
    width: 22px;
    order: 2;
    padding: 0 1rem;
}

.akashic-form input[type="text"], .akashic-form input[type="email"], .akashic-form input[type="tel"], .akashic-form select, .akashic-form textarea {
    border: none;
    background: transparent;
    box-shadow: none;
    order: 3;
    font-family: Helvetica, sans-serif;
}

.akashic-form select {
    cursor: pointer;
    padding: 0.5rem;
    color: rgba(0, 0, 0, 1);
}

.akashic-form select.is-empty {
    color: rgba(0, 0, 0, 0.5);
}

.akashic-form input::file-selector-button {
  background-color: #1A64A6;
  color: #FFFFFF;
  border-radius: 40px;
  border: none;
  box-shadow: none;
}

.akashic-form input[type="submit"]{
    border-radius: 40px;
    background-color: #303C8E;
    font-family: Helvetica, sans-serif;
}

.akashic-form p{
    display: flex;
    justify-content: center;
}

/* Custom File Input Button Styles */
.custom-file-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.custom-file-button {
    background-color: #1A64A6;
    color: #FFFFFF;
    border: none;
    border-radius: 40px;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-family: Helvetica, sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 100, 166, 0.3);
    text-align: center;
    min-width: 280px;
}

.custom-file-button:hover {
    background-color: #155187;
    box-shadow: 0 4px 12px rgba(26, 100, 166, 0.4);
    transform: translateY(-2px);
}

.custom-file-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(26, 100, 166, 0.3);
}

.custom-file-name {
    font-size: 0.95rem;
    color: #808285;
    font-family: Helvetica, sans-serif;
    text-align: center;
    font-style: italic;
}

.custom-file-name.has-file {
    color: #303C8E;
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 768px) {
    .custom-file-button {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.akashic-field-error{
    position: absolute;
    top: 100%;
    font-size: 0.85rem;
    color: #d20958;
}

.akashic-error-field-container{
    margin-bottom: 1.25rem;
}

#ast-scroll-top{
    border-radius: 100%;
    display: flex!important;
    justify-content: center;
    align-items: center;
}
