form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    >.row {
        display: flex;
        flex-direction: row;
        gap: 20px;

        >.form-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        }
    }

    label {
        font-size: 16px;
        font-weight: 400;
        color: #273717;
    }

    input[type="text"], input[type="email"], input[type="tel"], textarea {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        width: 100%;

        &:focus {
            outline: none;
            border: 1px solid #424115;
        }

        &:hover {
            border: 1px solid #424115;
        }

        &:focus-visible {
            outline: none;
            border: 1px solid #424115;
        }
        
        
    }
    select {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        width: 100%;

        &:focus {
            outline: none;
            border: 1px solid #424115;
        }
        
        &:hover {
            border: 1px solid #424115;
        }
        /* select arrow down */
        appearance: none;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
    }

    
    textarea {
        height: 100px;
        resize: vertical;
        &:focus {
            outline: none;
            border: 1px solid #424115;
        }
        &:hover {
            border: 1px solid #424115;
        }
    }
    
}

.address-card a, a.blend-in {
    text-decoration: none;
    color: #273717;
    &:hover {
        text-decoration: underline;
    }
    &:visited {
        color: #273717;
    }
    &:active {
        color: #273717;
    }
    &:focus {
        color: #273717;
    }
}