﻿
.tag-button {
    background: linear-gradient(to bottom, #f5a623, #e6951e);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.tag-button:hover {
    background: linear-gradient(to bottom, #e6951e, #d4850a);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.tag-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}






.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 15px;
}


.custom-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    border: 1px solid #e8cea0;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

    .custom-input::placeholder {
        color: #7a7a7a;
    }

    .custom-input:focus {
        border-color: #f0ad4e;
    }


.custom-button {
    background-color: #f0ad4e;
    background-image: linear-gradient(to bottom, #f4ba6e, #eb9d36);
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 35px;
    border: 1px solid #c78635;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

    .custom-button:hover {
        background-image: linear-gradient(to bottom, #eb9d36, #f4ba6e);
    }

    .custom-button:active {
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
        background-image: none;
        background-color: #eb9d36;
    }
