.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input,
select {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    margin-top: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus,
select:focus {
    border-color: #000a14;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 29, 60, 0.5);
}

.fields {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.field {
    flex: 1;
    margin-right: 10px;
}

@media (max-width: 600px) {
    .fields {
        flex-direction: column;
    }

    .field {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.actions {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ========================= */
/* IMAGE TOOL BUTTON STYLE  */
/* ========================= */

.app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(135deg, #0a3d62, #07517d);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Text & Icon */
.app .text {
    transition: 0.3s ease;
}

.app .iconn {
    display: flex;
    align-items: center;
    transition: 0.35s ease;
}

/* Hover Effect */
.app:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #07517d, #0a3d62);
}

/* Icon Slide Animation */
.app:hover .iconn {
    transform: translateX(6px);
}

/* Click Effect */
.app:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Shine Effect */
.app::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.app:hover::before {
    left: 120%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    padding: 0 20px 20px 20px;
}

.cardr {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.cardr h3 {
    margin: 0 0 6px 0;
    font-size: 14px;
    color: #555;
}

.cardr p {
    margin: 0;
    font-size: 18px;
    color: #001d3c;
    font-weight: 700;
    word-break: break-word;
}

.note {
    padding: 0 20px 20px 20px;
    font-size: 12px;
    color: #666;
}